Solving algebraic equations without using symbolic variables
1 view (last 30 days)
Show older comments
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.
Accepted Answer
Steven Lord
on 11 Feb 2022
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 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!