How to acieve a scatter plot like this.

조회 수: 1 (최근 30일)
Andreas Christensen Sørensen
Andreas Christensen Sørensen 2018년 12월 14일
댓글: Star Strider 2018년 12월 15일
Hi I have to do a scatter plot where each point in e.g. the xy-plane consist of determined value. My question is how do i plot a discrete amout of values where each of the values is related to a x, y-coordinate. I have seen reports with plots similar to the one presenten in the picture: scatter mesh.PNG
Hope to hear your input.
Best regards.

채택된 답변

Star Strider
Star Strider 2018년 12월 14일
Use the surf (link) function and the view (link) function:
M = nan(50);
M(10:40, 5:30) = rand(31,26);
figure
surf(M)
view(0,90)
axis([1 size(M,1) 1 size(M,2)])
grid on
How to acieve a scatter plot like this - 2018 12 14.png
  댓글 수: 2
Andreas Christensen Sørensen
Andreas Christensen Sørensen 2018년 12월 15일
Thank you very much, appreciate it :)
Star Strider
Star Strider 2018년 12월 15일
As always, my pleasure!

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

추가 답변 (1개)

Stephen23
Stephen23 2018년 12월 14일
편집: Stephen23 2018년 12월 14일
One simple option is to use pcolor:
>> M = randi([-3,6],5,7);
>> M([3,4,5,9,10,15]) = NaN;
>> pcolor(1:7,1:5,M)
temp6.png
You can view many plotting functions here:

카테고리

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

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by