how do i store a variable out of my function?

1 vue (au cours des 30 derniers jours)
tyler hollings
tyler hollings le 4 Sep 2020
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)

Réponse acceptée

Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam le 4 Sep 2020
The first line should be
function x = create_array(N,M,row_orient)
to return the generated matrix
  2 commentaires
tyler hollings
tyler hollings le 4 Sep 2020
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 le 4 Sep 2020
never mind youre totally right hahaha thanks for the help

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by