How can I fix this error?
显示 更早的评论

4 个评论
Khalid Mahmood
2021-4-7
Your question is not clear. What is i?
Khalid Mahmood
2021-4-7
编辑:Khalid Mahmood
2021-4-7
%Supposed this
function y=Question5(x,i)
.....
end
Let, x=randi([-10 10],5,3)
y=Question5(x,3)
Hazal Yuvgun
2021-4-7
Hazal Yuvgun
2021-4-7
采纳的回答
更多回答(2 个)
Steven Lord
2021-4-7
0 个投票
Where in your code do you define a variable named i? If the answer is some form of "nowhere" or "I don't" then MATLAB will call the built-in function to determine the value that should be used. That built-in function returns neither a positive integer value nor a logical value.
Khalid Mahmood
2021-4-7
function y=Question5(x,i)
y=[];
if i==1
y=x(1,:);
else
y=x(i,:)-x(1,:);
end
end
1 个评论
Khalid Mahmood
2021-4-7
save above code as Question5.m file. Then
>>x=randi([-10 10],5,3); % define x, or whatever x you want
>>y=Question5(x,1)
>>y=Question5(x,2)
>>y=Question5(x,3)
But I think you may need following code for advanced logic.
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!