Too many input arguments
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello! I noticed that whenever I use the syntaxes residue() and roots(), I get the error "too many input arguments". I copy pasted this code directly from matlab's documentation, but I keep getting the error. I tried to run the code here and it works. Is there any way to fix it?
p = [3 -2 -4];
r = roots(p)

1 Kommentar
Antworten (1)
VBBV
am 24 Jul. 2022
p = [3 -2 -4];
TESTE(p) ;% give the input argument matrix p for the function TESTE in command window
function r = TESTE(p)
r = roots(p);
end
If you give the input argument matrix , p to the function TESTE in command window, then it will work, It seems you have not given any input arguments and calling function directly
1 Kommentar
Siehe auch
Kategorien
Mehr zu Octave finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!