Solve Function for Given Range of Inputs

10 visualizaciones (últimos 30 días)
Braeden Elbers
Braeden Elbers el 26 de Feb. de 2022
Respondida: Walter Roberson el 27 de Feb. de 2022

syms x
x = sym('x')
x = -4:4
eqn = exp(-x.^2) == f(x)
S = solve(eqn,x)

I keep getting an error message when trying to folve the function f(x) for values of x -4 through 4. How would i define f(x) to get rid of the error message?

  2 comentarios
AndresVar
AndresVar el 27 de Feb. de 2022
here is an example to restrict the solution for x
What is f(x) in your case?
Torsten
Torsten el 27 de Feb. de 2022
How would i define f(x) to get rid of the error message?
Depends on which equation you are trying to solve.
What you write at the moment does not make sense since you already fix x as x=-4:4.
So exp(-x.^2)==f(x) is either true or false depending on f, but you can't solve for x.

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 27 de Feb. de 2022
syms x real
f(x) = sin(x)
f(x) = 
eqn = exp(-x.^2) == f(x)
eqn = 
Sn = vpasolve(eqn, x, [-4 4])
Sn = 

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by