Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

hi,i am getting error as not enough input arguments,while i run the below code....?? please let me know that?(the error is in second line of code)

1 visualización (últimos 30 días)
function [x]=trio(m,n)
x=rand([3*m n]);
x(1:3*m/3,:)=1;
x(3*m/3+1:3*m/3+m,:)=2;
x(3*m/3+m+1:end,:)=3;
end
  1 comentario
dpb
dpb el 8 de Dic. de 2019
Works fine here. Show us how you called it.
NB: 3*m/3 --> m so the above could be more succinctly written as
function [x]=trio(m,n)
x=rand([3*m n]);
x(1:m,:)=1;
x(m+1:2*m,:)=2;
x(2*m+1:end,:)=3;
end

Respuestas (1)

Stephan
Stephan el 8 de Dic. de 2019
Editada: Stephan el 8 de Dic. de 2019
Works fine for me, if called with 2 input arguments:
res = trio(3,4)
function x=trio(m,n)
x=rand([3*m n]);
x(1:3*m/3,:)=1;
x(3*m/3+1:3*m/3+m,:)=2;
x(3*m/3+m+1:end,:)=3;
end

Community Treasure Hunt

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

Start Hunting!

Translated by