how can i solve this polynomial equation?
1 回表示 (過去 30 日間)
古いコメントを表示
clear all clc; syms x A=[x 2 1;1 0 -x;5 1 x]; det(A) r=solve('det(A)==0','x')
0 件のコメント
採用された回答
Azzi Abdelmalek
2014 年 6 月 4 日
編集済み: Azzi Abdelmalek
2014 年 6 月 4 日
syms x
A=[x 2 1;1 0 -x;5 1 x]
r=double(solve(det(A),x))
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!