Borrar filtros
Borrar filtros

how can i find the roots

1 visualización (últimos 30 días)
andreas christou
andreas christou el 26 de Mzo. de 2019
Respondida: James Tursa el 26 de Mzo. de 2019
i have that problem and i have to find the roots the range of 0 to 50 the I the matlab export me wrong answers
I= 0:50
roots([0.013 -1*(0.013+I) I]);

Respuestas (1)

James Tursa
James Tursa el 26 de Mzo. de 2019
You could wrap it in a loop. E.g.,
for I= 0:50
r = roots([0.013 -1*(0.013+I) I]);
% do something with r here
end

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by