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!