I am not sure why my function is undefined for input arguments double.
1 次查看(过去 30 天)
显示 更早的评论
% Enter the commands for your function here.
x = random_number
function [check_range] = numberChecker(random_number, check_range)
if (random_number < 10 & random_number > 0)
check_range = 1
else
check_range =-1
end
end
0 个评论
采纳的回答
Chunru
2022-9-26
x = rand([-20 20]); % generate random number in range [-20 20]
% call the function
% output function_name input_argument
check = numberChecker( x )
function [check_range] = numberChecker(random_number)
if (random_number < 10 & random_number > 0)
check_range = 1;
else
check_range =-1;
end
end
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!