length
Length of an object.
📝 Syntaxe
l = length(M)
📥 Argument d'entrée
M - a variable
📤 Argument de sortie
l - the length of the largest array dimension in M.
📄 Description
For matrix or N-dimensional array, length returns the number of elements along the largest dimension. For empty object, length returns 0. For scalar, length returns 1. For a vector, length returns the number of elements.
💡 Exemple
length(ones(3, 0))
length(3)
length([1 2 3 4 5])
length(ones(3, 4, 5))🔗 Voir aussi
🕔 Historique
Version
📄 Description
1.0.0
version initiale
Last updated
Was this helpful?