writting equation with summation
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can i write such equation on matlab , although i have more 4 equations simliar to it with unknown parameters, so that i can solve those equations to get the unknowns
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/286091/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/286092/image.png)
1 Kommentar
darova
am 21 Apr. 2020
Can you explain more? Do you have known constants values? Do you have any attempts (with fsolve maybe)?
Antworten (1)
Deepak Gupta
am 21 Apr. 2020
Hello Hassan,
You can use solve function of matlab. Here is an example:
syms u v
eqns = [2*u + v == 0, u - v == 1];
S = solve(eqns,[u v])
Thanks,
Deepak
0 Kommentare
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!