What is the corect code for writing an error message when a user inputs an array instead of a scalar value?
Mostrar comentarios más antiguos
What is the corect code for writing an error message when a user inputs an array instead of a scalar value?
Respuestas (1)
James Tursa
el 7 de Abr. de 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.
Categorías
Más información sobre Data Types en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!