how do i store a variable out of my function?

5 次查看(过去 30 天)
i have a function file im calling in a script and when i try to assign its out put to a variable it says "Too many output arguments."
i know funtion works right i just dont know how to store it into a variable.
here is my function
function create_array(N,M,row_orient)
if row_orient==1
for i=1:N
for j=1:M
if N==M
x(i,j)= N*(i-1)+j
elseif M-N >=1 | N-M >= 1
x(i,j)=M*(i-1)+j
end
end
end
elseif row_orient==0
for i=1:N
for j=1:M
if N==M
x(j,i)= N*(i-1)+j
elseif M-N >=1 | N-M >= 1
x(j,i)=M*(i-1)+j
end
end
end
end
end
and here is the script im calling it to
x=create_array(3,1,1)

采纳的回答

Asad (Mehrzad) Khoddam
The first line should be
function x = create_array(N,M,row_orient)
to return the generated matrix
  2 个评论
tyler hollings
tyler hollings 2020-9-4
but thats what it is, its in the function file,
my function works in other scripts until i try to assign it to a variable.
for example
create_array(3,1,1) works
but
x=create_array(3,1,1) does not work
tyler hollings
tyler hollings 2020-9-4
never mind youre totally right hahaha thanks for the help

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by