Not Enough Input Arguments
Mostrar comentarios más antiguos
Anyone knows how I can fix a 'not enough input arguments' error? I have the code below, and it points to my if statement. Thanl you!
function C = first(x,y)
if (x >= 0 && y >= 0)
C = x + y;
elseif ((x >= 0) && (y < 0))
C = x + y.^2;
elseif ((x < 0) && (y >= 0))
C = x.^2 + y;
elseif ((x < 0) && (y < 0))
C = x.^2 + y.^2;
end
end
Respuestas (1)
Steven Lord
el 2 de Mzo. de 2021
0 votos
Your function can be called with at most two inputs, and since it uses both inputs on the line you called out it must be called with at least two inputs. So you need to call it with exactly two inputs.
2 comentarios
Karina Lopez Zamora
el 2 de Mzo. de 2021
So function C(x,y) = first(x,y) or when I assigned C to the expressions above?
Sorry, I'm still learning MATLAB.
xin = randn()
yin = randn()
output = first(xin, yin)
function C = first(x,y)
if (x >= 0 && y >= 0)
C = x + y;
elseif ((x >= 0) && (y < 0))
C = x + y.^2;
elseif ((x < 0) && (y >= 0))
C = x.^2 + y;
elseif ((x < 0) && (y < 0))
C = x.^2 + y.^2;
end
end
Categorías
Más información sobre Characters and Strings en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!