what is my mistake?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
syms x
A=[x 2 1;1 0 -x;5 1 x];
x=-15:.1:15;
plot(x,det(A))
grid on
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 14 Giu 2014
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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Calculus in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!