finding the values of X for a given Y in an equation

38 views (last 30 days)
How can I write a code that gets the value of x when y is equal get the x values where y is 3?
y = x^4+ x^2
y = 3

Accepted Answer

Chunru
Chunru on 1 Dec 2021
syms x y
solve(x^4+x^2 == 3)
ans = 

More Answers (0)

Categories

Find more on General Physics in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!