Is it possible to create a function to shorten a variable?
7 ビュー (過去 30 日間)
古いコメントを表示
Hello.
I would like to know it is possible to create a function ("b" in the example below) in order to shorten the expression of another variable. For example:
a = 2;
b = 0.5*c + 1;
c = b + a;
Solving the system of equations above manually, a value of c = 6 and b = 4 is achieved. That being said, is there a command that lets me reproduce this manual calculation, or do I have to obligatorily replace "c = b + a" with "c = 2*(a+1)" in order to solve this system? Thanks in advance!
1 件のコメント
Cam Salzberger
2020 年 3 月 4 日
編集済み: Cam Salzberger
2020 年 3 月 4 日
Are you trying to solve this system of equations symbolically or numerically? If symbolically, do you have the Symbolic Math Toolbox (check ver output).
回答 (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!