writting equation with summation
2 ビュー (過去 30 日間)
古いコメントを表示
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
1 件のコメント
darova
2020 年 4 月 21 日
Can you explain more? Do you have known constants values? Do you have any attempts (with fsolve maybe)?
回答 (1 件)
Deepak Gupta
2020 年 4 月 21 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!