I want to find the function in R which does the same as the function size
in Matlab.
In Matlab, if A = [ 1 2 3 4 5]
, then size(A) = 1 5
.
If A =[ 1 2 3;4 5 6]
, then size(A) = 3 3
.
In R, I found that the function dim
gives the size of a matrix, but it doesn't apply to vectors.
Please help me solve this problem.
Thanks a lot.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…