Azzera filtri
Azzera filtri

>>root([1 -1 -2]) for a polynomial is not working.

3 visualizzazioni (ultimi 30 giorni)
Torre Kakuk
Torre Kakuk il 16 Gen 2017
Modificato: Image Analyst il 16 Gen 2017
It returns
"Undefined function 'root' for input arguments of type 'double'."
I also tried
>> c = [3 -2 1 2 0 -1];
roots(c)
which returned
"Attempt to execute SCRIPT roots as a function:
C:\Users\Christi\Documents\MATLAB\roots.m"

Risposte (2)

Adam
Adam il 16 Gen 2017
There is no 'root' function in Matlab or its toolboxes that I am aware of.
doc roots
is a function, but you have hidden it with your own script of the same name. Rename your script to something else.
In future, try to remember to do e.g.
which roots
before deciding to name your own function or variable 'roots' to check you aren't over-riding an existing function.

Niels
Niels il 16 Gen 2017
the first error results in a spelling mistake:
you typed root instead of roots, the second works fine:
>> c = [3 -2 1 2 0 -1]
c =
3 -2 1 2 0 -1
>> roots(c)
ans =
0.5911 + 0.9284i
0.5911 - 0.9284i
0.6234 + 0.0000i
-0.5694 + 0.3423i
-0.5694 - 0.3423i

Categorie

Scopri di più su Introduction to Installation and Licensing in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by