what is my mistake?
4 ビュー (過去 30 日間)
古いコメントを表示
syms x
A=[x 2 1;1 0 -x;5 1 x];
x=-15:.1:15;
plot(x,det(A))
grid on
0 件のコメント
採用された回答
Azzi Abdelmalek
2014 年 6 月 14 日
syms x
A=[x 2 1;1 0 -x;5 1 x];
x=-15:.1:15;
plot(x,subs(det(A),x))
grid on
0 件のコメント
その他の回答 (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!