Solving algebraic equations without using symbolic variables
Ältere Kommentare anzeigen
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 Kommentare
David Hill
am 11 Feb. 2022
Your question is trival. I have a hard time understanding your question.
y=1;
x=2-y;%x==1
Aleem Andrew
am 11 Feb. 2022
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Calculus finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!