Continuous plot(x,y) for discrete data points
36 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vineet
el 30 de Dic. de 2013
Respondida: Anil
el 28 de Dic. de 2022
When using plot(x,y) function, [say for example x = 1X20 matrix and y=sin(x), which means that there are only 20 data points), matlab plot comes out to be a continuous one. Is this always the case? I just started using matlab.
1 comentario
Chandeesh
el 25 de Jul. de 2022
Select the functions to represent the graph of a continuous and a discrete function.
Respuesta aceptada
Azzi Abdelmalek
el 30 de Dic. de 2013
You can use plot for continuous plot, or stem function for discrete plot. You can also use scatter function
Example
x=0:10
y=sin(x)
plottx,y);
figure
stem(x,y);
figure
scatter(x,y)
2 comentarios
Azzi Abdelmalek
el 30 de Dic. de 2013
for statistics, maybe you need to look at
doc hist
doc bar
Más respuestas (2)
Sean de Wolski
el 30 de Dic. de 2013
Editada: Sean de Wolski
el 30 de Dic. de 2013
plot is just connecting the points with lines. If you don't want this, you can specify the marker. For example, for a red *
>> plot(0:0.1:2*pi,sin(0:0.1:2*pi),'r*')
And for more info:
doc plot
Anil
el 28 de Dic. de 2022
i only have one point for x and y how can i generate a continuous plot for this
0 comentarios
Ver también
Categorías
Más información sobre Annotations 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!