unwanted variable can I not assign
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi, some function in matlab like "size" has options to give 2 outputs like "[a1,a2]=size(x)". But sometimes I don't want to waste space for another variable, is it possible to not do that?
0 Commenti
Risposta accettata
Jakub Mrowka
il 6 Ott 2016
Modificato: Jakub Mrowka
il 6 Ott 2016
If you don't want every answer from function just type "~" instead of variable.
Example:
[~,a2]=size(x)
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!