ourMELONS/R/myisvector.R
2022-12-22 15:06:04 +01:00

7 lines
120 B
R

myisvector <- function(V) {
# Kuten isvector(V)
A <- size(V)
r <- (length(A) == 2) & (min(A) == 1)
return(r)
}