Hi . what is the difference between numel() and length() of a given vector ?
    206 views (last 30 days)
  
       Show older comments
    
what is the difference between numel() and length()  of a given vector  ?
0 Comments
Accepted Answer
  KSSV
      
      
 on 6 Oct 2021
        
      Edited: KSSV
      
      
 on 6 Oct 2021
  
      numel gives you total number of elements present in the array. i.e. it is product of result of size function. 
A = rand(10,3) ; 
numel(A)
size(A,1)*size(A,2)
length gives you maximum number of size or which ever is dominant along row and column.
A = rand(10,3) ;
length(A)
size(A,1)
%
B = A' ;
length(B)
size(B,2)
More Answers (0)
See Also
Categories
				Find more on Tables in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

