How to restrict input to set of sizes in an arguments block?
3 次查看(过去 30 天)
显示 更早的评论
I have a function with argument that should be either 2 x N or 3 x N size. Can't seem to figure out how to have that in an input block. Something similar to below (which isn't supported syntax):
arguments
myArg (2:3,:);
end
0 个评论
采纳的回答
Steven Lord
2022-3-18
I don't believe you can do this with the dimension validation alone. Nor would the existing validation functions help. So you're going to need to write your own, which I've done below as mustHaveTwoOrThreeRows. These first two cases work:
sample1674659(ones(2, 3))
sample1674659(ones(3, 3))
Specifying an input with the wrong number of rows will error, as will specifying an N-dimensional array (N > 2) (because of the dimension validation.)
try
sample1674659(ones(4, 3))
catch ME
fprintf("This case threw the error:\n\n%s\n", ME.message)
end
try
sample1674659(ones(2, 3, 4))
catch ME
fprintf("This case threw the error:\n\n%s\n", ME.message)
end
function y = sample1674659(x)
arguments
x (:, :) {mustHaveTwoOrThreeRows(x)}
end
y = sum(x, 'all');
end
function mustHaveTwoOrThreeRows(x)
s = size(x, 1);
if ~(s == 2 || s == 3)
error('X must have either two or three rows.');
end
end
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!