Matlab "missing" values not clear
Mostra commenti meno recenti
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 Commenti
Stephen23
il 23 Mar 2017
@Temitope Akinpelu: how did you create the variable b ?
Walter Roberson
il 23 Mar 2017
Modificato: Guillaume
il 23 Mar 2017
Risposta accettata
Più risposte (1)
Jan
il 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.
Categorie
Scopri di più su Characters and Strings in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!