How to expose a symbol from an equation? I have Symbolic Math Toolbox, if it is necessary
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
matico
le 23 Août 2015
Modifié(e) : Star Strider
le 23 Août 2015
Let say I have an equation like:
y = @(x) x^2 + 2;
I want to express X in dependence of Y like:
x = @(y) sqrt(y-2);
0 commentaires
Réponse acceptée
Star Strider
le 23 Août 2015
Modifié(e) : Star Strider
le 23 Août 2015
You have to set a few rules for the Symbolic Math Toolbox, but this is one possibility:
syms x y positive
assume(y > 2)
Eqn = y == x^2 + 2;
x = solve(Eqn)
x =
(y - 2)^(1/2)
EDIT — If you want to create an anonymous function from ‘x’, use the matlabFunction function.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!