What is the corect code for writing an error message when a user inputs an array instead of a scalar value?

1 Ansicht (letzte 30 Tage)
What is the corect code for writing an error message when a user inputs an array instead of a scalar value?

Antworten (1)

James Tursa
James Tursa am 7 Apr. 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.

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by