What is the corect code for writing an error message when a user inputs an array instead of a scalar value?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
What is the corect code for writing an error message when a user inputs an array instead of a scalar value?
0 commentaires
Réponses (1)
James Tursa
le 7 Avr 2021
Several ways to test for a scalar. E.g.,
if( ~isscalar(x) )
error('Input is not a scalar');
end
or
if( numel(x) ~= 1 )
error('Input is not a scalar');
end
etc.
0 commentaires
Voir également
Catégories
En savoir plus sur Cell Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!