solutions of equations

1 次查看(过去 30 天)
Dwyane  Wade
Dwyane Wade 2011-8-15
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.

采纳的回答

Paulo Silva
Paulo Silva 2011-8-15
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by