could anyone help me to solve the issue
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
jaah navi
el 4 de Jul. de 2019
Respondida: Image Analyst
el 4 de Jul. de 2019
I want to plot the graph with respect to the following code:
x=1:10
for x=1:10
y=log(x)
end
plot (x,y,'*')
When I run the code I am unable to get the correct result.
What I actually need is i want to plot the graph with respect to all values.
Could anyone please help me on it?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 4 de Jul. de 2019
Try this:
x=1:10
y=log(x)
plot (x,y,'b*-')
grid on;
xlabel('x');
ylabel('y');

0 comentarios
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!