Effacer les filtres
Effacer les filtres

how to write code to find y???

2 vues (au cours des 30 derniers jours)
Maruti Patil
Maruti Patil le 13 Mar 2015
Commenté : Adam le 13 Mar 2015
I am new user to Matlab. I want to calculate the value of y for a given value of x
if x=8
x=(y^2)+2
how to write code to find y???

Réponses (1)

Adam
Adam le 13 Mar 2015
y = [-1 1] .* sqrt( x - 2 );
This is maths rather than Matlab though. Once you rearrange the equation the Matlab code for it is trivial!
There are numerous ways to code it and if you don't care about the negative root then it is even more trivial.
  2 commentaires
Maruti Patil
Maruti Patil le 13 Mar 2015
I want to calculate value of y without rearranging the equation. Although I have mentioned simple equation here, I have bigger equation...
Adam
Adam le 13 Mar 2015
You probably need the Symbolic Math Toolbox for that then, although it isn't something I do in my work so there may be methods in base Matlab too.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Get Started with MATLAB 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!

Translated by