Solving algebraic equations without using symbolic variables
8 ビュー (過去 30 日間)
古いコメントを表示
How do you solve an algebraic equation like x+y=2 for x without using symbolic variables - for example by defining a function handle y = 1; f = @(x) x+y and setting it equal to 2? Y's value is known so only x needs to be found.
2 件のコメント
David Hill
2022 年 2 月 11 日
Your question is trival. I have a hard time understanding your question.
y=1;
x=2-y;%x==1
採用された回答
Steven Lord
2022 年 2 月 11 日
For one equation in one unknown, use fzero.
y = 1;
f = @(x) x + y;
initialGuess = 42;
% Find a zero of f(x) - 2 = 0 which is equivalent to f(x) = 2
x = fzero(@(x) f(x) - 2, initialGuess)
check = f(x) % Should be close to 2
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!