How to convert this equation to code?

2 visualizaciones (últimos 30 días)
Bruh
Bruh el 9 de Jul. de 2022
Comentada: Bruh el 9 de Jul. de 2022
I think it is x*sqrt((16-x**2)**3)) but it didnt wort

Respuestas (3)

Alan Stevens
Alan Stevens el 9 de Jul. de 2022
Use ^ not **

Chandrika
Chandrika el 9 de Jul. de 2022
As per my understanding, you want the MATLAB code for the given expression. Please try using the following code for the same:
y=x*sqrt(cube((16-sqr(x))))
function square=sqr(x)
square=x*x;
end
function cuben=cube(x)
cuben=x*x*x;
end
You can check the above script by computing 'y' for different values of x.
Hope this helps!

Sam Chak
Sam Chak el 9 de Jul. de 2022
Hi Bruh, First, it's because you used the Python code. Second, bracket issue. Try this instead:
x.*sqrt((16 - x.^2).^3)
  1 comentario
Bruh
Bruh el 9 de Jul. de 2022
How about convert the formula to phyton code?

Iniciar sesión para comentar.

Categorías

Más información sobre Call Python from MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by