what's the program mistake?

5 vues (au cours des 30 derniers jours)
MA
MA le 4 Juin 2014
Réponse apportée : MA le 10 Nov 2014
clear all clc; syms x A=[x 2 1;1 0 -x;5 1 x]; b=det(A) r=solve('b=0','x')

Réponse acceptée

MA
MA le 10 Nov 2014

Plus de réponses (2)

Mischa Kim
Mischa Kim le 4 Juin 2014
Hello Ali, use instead
r = solve(b==0)
  2 commentaires
MA
MA le 4 Juin 2014
Hi,it doesn't work
Mahdi
Mahdi le 4 Juin 2014
Why isn't it working? What's the error that you're getting?

Connectez-vous pour commenter.


Mahdi
Mahdi le 4 Juin 2014
Try this?
clear all
clc;
syms x
A=[x 2 1;1 0 -x;5 1 x];
b=det(A)
r=eval(solve(b==0))
  3 commentaires
Mahdi
Mahdi le 4 Juin 2014
Modifié(e) : Mahdi le 4 Juin 2014
You will need to provide more information why you're not getting the answer that you want. Please read this.
MA
MA le 4 Juin 2014
error

Connectez-vous pour commenter.

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by