Not enough input arguments

2 次查看(过去 30 天)
Ngoc
Ngoc 2024-5-31
评论: Ngoc 2024-6-1
Hi i'm new to MatLab. Why I can't get the values from matrix x in function MyInput() to use in another function?
function Calculate(x)
MyInput();
y = zeros(1,6);
for j=2:6
y(1,j) = x(1,j)^j;
j=j+1;
end
end
function x = MyInput()
x = zeros(1,6);
x(1,1) = 2;
for i=2:6
x(1,i)=x(1,i-1)+1;
i=i+1;
end
end
The command window says : ' Not enough input arguments.'. It seems to give this error for line 5 but I'm not sure why.
Thanks.

采纳的回答

Stephen23
Stephen23 2024-5-31
编辑:Stephen23 2024-5-31
"Why I can't get the values from matrix x in function MyInput() to use in another function?"
Basically because you did not call MyInput with an output argument.
Note that it makes little sense to define Calculate with an input argument... and then completely ignore that input argument by redefining it on the first line of code. Much better to use that input argument.
Note that you should not increment the index i=i+1 and j=j+1 at the end of the for loops: the for operator will simply redefine those values at the start of each iteration, so those lines serve absolutely no purpose. Get rid of them.
vec = MyInput()
vec = 1x6
2 3 4 5 6 7
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
out = Calculate(vec)
out = 1x6
0 9 64 625 7776 117649
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
function y = Calculate(x)
y = zeros(1,6);
for j=2:6
y(1,j) = x(1,j)^j;
end
end
function x = MyInput()
x = zeros(1,6);
x(1,1) = 2;
for i=2:6
x(1,i)=x(1,i-1)+1;
end
end
  2 个评论
Stephen23
Stephen23 2024-5-31
编辑:Stephen23 2024-5-31
A simpler MATLAB approach:
vec = 2:7
vec = 1x6
2 3 4 5 6 7
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
out = [0,vec(2:end).^(2:6)]
out = 1x6
0 9 64 625 7776 117649
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Ngoc
Ngoc 2024-6-1
Thank you so much!!!😊😊😊

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by