Matrix with elements as polynomial

1 visualización (últimos 30 días)
ASHA RANI
ASHA RANI el 2 de Jul. de 2020
Comentada: ASHA RANI el 2 de Jul. de 2020
syms x
X = [x^2-5*x+6, x^2-6*x+8, x.^2-10*x+25, x.^2-14*x+24]
X is a 1* 4 sym type. I want to find roots of each elements of X. Please Help

Respuesta aceptada

madhan ravi
madhan ravi el 2 de Jul. de 2020
ROOTS = cell(numel(X), 1);
for k = 1:numel(X)
ROOTS{k} = roots(sym2poly(X(k)));
end
celldisp(ROOTS)

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by