How to connect data on a scatter plot in MatLab?

조회 수: 3 (최근 30일)
Robert  Flores
Robert Flores 2018년 5월 6일
편집: the cyclist 2018년 5월 6일
Hello,
I am trying to connect my data with a line. In my code I have the three points plotted, I just need them to connect. Also, if you know of a way to have my last plot be at the number of elements equal to Inf,that would help a lot, thanks. If you need to see all my code it's in the attachments.
Code:
figure;scatter(5,U5(n5+1),'m *')
hold on
scatter(10,U10(n10+1),'m *')
scatter(20,U20(n20+1),'m *')
xlim([0 30])
title('Deflection V. Number of Elements')
xlabel('Number of Elements')
ylabel('Deflection')

답변 (1개)

the cyclist
the cyclist 2018년 5월 6일
편집: the cyclist 2018년 5월 6일
You could use the plot command instead. Something like
figure
plot([5 10 20],[U5(n5+1) U10(n10+1) U20(n20+1)],'m*-')
See the documentation for plot for details.

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by