solutions of equations
조회 수: 2 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
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
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!