필터 지우기
필터 지우기

How to plot a graph like this??

조회 수: 2 (최근 30일)
Shahriar Shafin
Shahriar Shafin 2023년 9월 13일
편집: dpb 2023년 9월 14일
How do I plot a graph like this ??It seems a scatter plot.There are 200 data points for each energy and time value.

채택된 답변

dpb
dpb 2023년 9월 13일
편집: dpb 2023년 9월 14일
scatter it is, indeed. From the link, "specify x and y as matrices of equal size. In this case, scatter plots each column of y against the corresponding column of x." and you're done. The legend is in the 'location','northwest' position. The annotation will have to be done with text() but that's straightforward as well; just remember to set hold on to not wipe the plot but add to it.
  댓글 수: 2
Shahriar Shafin
Shahriar Shafin 2023년 9월 13일

Thank you.but my inner portion isn't filled like the picture above.I think they have taken more than 200 data.

dpb
dpb 2023년 9월 14일
편집: dpb 2023년 9월 14일
The original would have had input x and y arrays each with five (5) columns of x,y pairs to make the five separate scatter segments...or, of course, it could be done with five separate calls and hold on, whereas you had/plotted only one data set--or (the image is too small/indistinct for my old eyes to tell for sure) if there are multiple y columns, there was either only a single x vector or at least the x data range covered the same range instead of different ranges as in the original.
x=randi([-20 20],200,5)+[900 1200:500:2700];
y=0.1*abs(randn(size(x)))+[0.8 1.3:0.1:1.6];
scatter(x,y,10,'filled')
xlim([200 2800])
ylim([0.6 2.2]), yticks([1:0.5:2]), ytickformat('%0.1f')
box on
hAx=gca; hAx.XMinorTick='on'; hAx.YMinorTick='on';
legend(compose('%d J/m^2',[10:10:50].'),'location','northwest','Box','off','NumColumns',2)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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