Matlab "missing" values not clear
Afficher commentaires plus anciens
Matlab holds some types of "<missing>" values in its string array. For instance
b =
3×3 string array
"I" <missing> "MATLAB"
<missing> "love" "MATLAB"
"I" "love" <missing>
when I access each element of the array
b(1)
ans =
string
"I"
b{1}
ans =
I
b(2)
ans =
string
<missing>
b{2}
what type of value is "missing", and why can't it simply be an empty character vector?
2 commentaires
Stephen23
le 23 Mar 2017
@Temitope Akinpelu: how did you create the variable b ?
Walter Roberson
le 23 Mar 2017
Modifié(e) : Guillaume
le 23 Mar 2017
Réponse acceptée
Plus de réponses (1)
Jan
le 23 Mar 2017
"Missing" means, that the string was not defined before. An empty string would be a defined string already. This is something completely different.
With cell arrays an equivalent method was implemented for cell arrays, but not visible from the Matlab layer:
C = cell(1, 5)
C{1}
Now the contents of C{1} is treated as empty matrix [], but internally the element contains a NULL pointer. From the MEX level this must be considered explicitely - with the advantage that it can be distinguished also.
Catégories
En savoir plus sur Characters and Strings dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!