Borrar filtros
Borrar filtros

What's wrong in the code? I cant generate the same graph as the question required.

1 visualización (últimos 30 días)
function y = f(x)
x = -5:5;
y = sin(x.^2).*exp(cos(x));
plot(x,y)
end

Respuesta aceptada

Chunru
Chunru el 17 de Nov. de 2021
x = -5:0.1:5;
y = sin(x.^2).*exp(cos(x));
plot(x,y)

Más respuestas (1)

Yusuf Suer Erdem
Yusuf Suer Erdem el 17 de Nov. de 2021
x = linspace(-5,5);
k = sin(x.^2);
l= exp(cos(x));
y = k.*l;
plot(x,y)
USE THIS WAY, IT HELPS. I THINK YOU WERE JUST MISSING 'LINSPACE' COMMAND. GOOD LUCK!

Categorías

Más información sobre Directed Graphs 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