Matrix with elements as polynomial

2 ビュー (過去 30 日間)
ASHA RANI
ASHA RANI 2020 年 7 月 2 日
コメント済み: ASHA RANI 2020 年 7 月 2 日
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

採用された回答

madhan ravi
madhan ravi 2020 年 7 月 2 日
ROOTS = cell(numel(X), 1);
for k = 1:numel(X)
ROOTS{k} = roots(sym2poly(X(k)));
end
celldisp(ROOTS)
  1 件のコメント
ASHA RANI
ASHA RANI 2020 年 7 月 2 日
Thanx sir...its working properly.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by