How to plot y=(exp.^(sqrt(x)))./(x*x - x*(exp(x))).^(1/3);

1 visualización (últimos 30 días)
Shashyabh Ray
Shashyabh Ray el 2 de Mzo. de 2021
Respondida: Star Strider el 2 de Mzo. de 2021
y=(exp.^(sqrt(x)))./(x*x - x*(exp(x))).^(1/3);

Respuestas (1)

Star Strider
Star Strider el 2 de Mzo. de 2021
Try these:
x = linspace(-10, 10, 150);
y = (exp(sqrt(x)))./(x.*x - x.*(exp(x))).^(1/3);
figure
plot(x, real(y), x, imag(y))
grid
legend('\Re{y}', '\Im{y}')
y = @(x) (exp(sqrt(x)))./(x.*x - x.*(exp(x))).^(1/3);
figure
fplot(@(x)real(y(x)), [-10 10])
hold on
fplot(@(x)imag(y(x)), [-10 10])
hold off
grid
legend('\Re{y}', '\Im{y}')
It is necessary to use element-wise operations to calculate ‘y’. See Array vs. Matrix Operations for details.

Categorías

Más información sobre Matrices and Arrays 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