Hi . what is the difference between numel() and length() of a given vector ?
185 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
what is the difference between numel() and length() of a given vector ?
0 commentaires
Réponse acceptée
KSSV
le 6 Oct 2021
Modifié(e) : KSSV
le 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)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Tables dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!