How do I assign different solutions from a function as different variables?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hoang Nam
le 13 Sep 2020
Commenté : Hoang Nam
le 13 Sep 2020
Sorry for this very basic question, I just start learning Matlab, so I really appreciate any help
Say I have a function x^2 = x
I put in on solve() like this S = solve(x^2==x,x)
It gives me
S =
0
1
but I want to use those solutions as different variables such as x1 and x2. So, how do I make it x1=0 and x2=1?
Thanks for reading my post
0 commentaires
Réponse acceptée
BOB MATHEW SYJI
le 13 Sep 2020
Hope this helps.
syms x
S = (solve(x^2==x,x))';
x1=double(S(1));
x2=double(S(2));
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!