how can i plot this equation?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hassan elkholy
el 12 de Dic. de 2020
Comentada: Ive J
el 12 de Dic. de 2020
how can i plot this equation?
x=0.1:1
y= x^3 ln (1/x)
0 comentarios
Respuesta aceptada
Ive J
el 12 de Dic. de 2020
Please first try to search in answers or simply Google it.
% doc plot
x = 1:10;
y = x.^3;
plot(x, y)
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!