Effacer les filtres
Effacer les filtres

solutions of equations

1 vue (au cours des 30 derniers jours)
Dwyane  Wade
Dwyane Wade le 15 Août 2011
how do I find solution for the following problems? (this topic is under solutions of equations.)
1. e^4x-3e^2x=-2
2. tan^-1(x) + tan^-1(2x)=0
3. x-2y+3z=10; 2x-y-4z=8; 2x+y-z=15;
thank you for those who will help I'd really appreciate it.

Réponse acceptée

Paulo Silva
Paulo Silva le 15 Août 2011
We are providing you solutions but you don't seem to be understanding them (your matrix question shows it), please try to understand our answers before creating more questions (most of them similar), you don't learn to use MATLAB having others doing the code for you, I guess you are in school so your teachers will evaluate your knowledge, we won't be there to do the code for you!
Using the symbolic toolbox:
solve(sym('exp(4)*x-3*exp(2)*x=-2'))
solve(sym('atan(x) + atan(2*x)=0'))
s=solve(sym('x-2*y+3*z=10'), sym('2*x-y-4*z=8'),sym('2*x+y-z=15'));
double([s.x s.y s.z])' %from top to bottom x y z

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB 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