solving 4 equation with four unknwon
Show older comments
i can't find the sol for this code . what's rong with it ?
syms k m n d
i=.015; o=.016; x=[0.1;0.2;0.3;0.4;0.5]; v=-104.63; t=97;
equ1=d-.5*k*m*n;
equ2=n-m-(2*t)/k;
equ3=(k/4)*(n^2-m^2+i^2-o^2)+d*log((m*o)/(n*i))-t*(m-i-o+n);
equ4=(.25)*(i^2)*x-(-1/v)*((t/3)*(i^3-m^3+o^3-n^3)+.125*k*(i^4-m^4+n^4-o^4)+.5*d*(m^2-i^2+o^2-n^2)); sol=solve(equ1,equ2,equ3,equ4)
Accepted Answer
More Answers (0)
Categories
Find more on Numeric Solvers in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!