Q write a function called picker that takes three arguments called condition, in1 and in2 in this order. The argument condition is a logical. If it is true, the function assigns the value of in1 to the output argument out, otherwise, it assigns the v
33 次查看(过去 30 天)
显示 更早的评论
Q write a function called picker that takes three arguments called condition, in1 and in2 in this order. The argument condition is a logical. If it is true, the function assigns the value of in1 to the output argument out, otherwise, it assigns the value of in2 to out.
Code to call function:
- out=picker(true,1,2)
- out=picker(false,1,2)
4 个评论
Abdulsalam ALMABROUK
2021-5-31
function out = picker(condition,in1,in2)
if condition == 1;
out = in1;
else
out = in2;
end
Ibad Ur Rahman
2022-4-4
function out=picker(condition,in1,in2)
if condition==1
out=in1;
else
out=in2;
end
回答(3 个)
Chandan Kumar
2021-3-1
function out = picker(condition,in1,in2)
if (condition==1)
out=in1
else
out=in2
end
0 个评论
Nitin Kapgate
2020-8-5
Hi Vikash,
I understand that you need to write a function (“picker”) which takes three inputs and return one output based on the first argument, which is of logical type.
An answer to a similar question can be found here
0 个评论
VIGNESH B S
2021-10-13
function ret = picker(condition,in1,in2)
if condition == 1
ret = in1;
else
ret = in2;
end
end
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!