How can you display a null/empty matrix?
Afficher commentaires plus anciens
is this a way? M = [ ] disp(M)
1 commentaire
dpb
le 14 Mar 2014
Did you try it?
What do you want displayed and in what context?
Réponses (1)
Benjamin Avants
le 14 Mar 2014
Your method won't display anything. You can remove the semicolon from the line that assigns a value to M and it will display like this:
M = []
M =
[]
If you want to test if it is empty use something like the following:
M = [];
if isempty(M)
disp('M is empty')
end
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!