Joining all y-axis points by a smooth line
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Pavan Kumar
el 5 de Jun. de 2019
Comentada: Star Strider
el 6 de Jun. de 2019
Dear Firends,
Need you suggestion.
I have the following matlab figure which have multiple y values for one x-point.
I want to join all the points by a smooth line as shown by the red.
If however, i use matlab plot or line function, it joing all the points according to increasing x-value and makes the plot noisy.
Can anyone suggest me how to join these points as shown by using matlab or any other program.
Thanking you.
![123456.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/223159/123456.jpeg)
0 comentarios
Respuesta aceptada
Star Strider
el 5 de Jun. de 2019
Try this:
y = linspace(1.2, 3, 50);
x = sin(2*pi*y)*2000;
figure
plot(x, y, '-o')
grid
It would be easier if we had your data, since I do not know if they are sorted or random. If they are random, you would need to sort them first to use this approach.
7 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!