What is the corect code for writing an error message when a user inputs an array instead of a scalar value?
1 回表示 (過去 30 日間)
古いコメントを表示
What is the corect code for writing an error message when a user inputs an array instead of a scalar value?
0 件のコメント
回答 (1 件)
James Tursa
2021 年 4 月 7 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Multidimensional Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!