필터 지우기
필터 지우기

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