Error: Not Enough Input Arguments

1 view (last 30 days)
Im not that experinced in matlab yet, and Im facing a problem. When I write roots command like that:
roots([3 -2 -4])
or
p = [3 -2 -4];
roots(p)
Whenever I run the program I get the following:
Not enough input arguments.
Error in roots (line 2)
Delta = b^2 - 4*a*c ;
Error in Untitled3 (line 1)
roots([3 -2 -4])

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 29 Nov 2020
Edited: KALYAN ACHARJYA on 29 Nov 2020
Once, I tried to reproduce the same error, I could not
>> p = [3 -2 -4];
roots(p)
ans =
1.5352
-0.8685
One Suspect: Is there any other file name as roots.m in the same working directory?
  2 Comments
Bilal Antaki
Bilal Antaki on 29 Nov 2020
Oh yeah .. I had a function called roots. It is probably why the command was not working.
Thanks alot!

Sign in to comment.

More Answers (0)

Categories

Find more on Polynomials in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!