Scatter Plot and Contours

조회 수: 2 (최근 30일)
Harry
Harry 2017년 3월 30일
답변: Star Strider 2017년 3월 30일
I would like to include contours in my scatter plot to differentiate between sets of data (2 in this case).
Does anyone know what I would have to adjust in my code to get a similar result as in the picture attached?
Thanks in advance
figure
Size = 50;
hold on
HS = scatter(F(1:10,1),F(1:10,2),'+','SizeData',Size,'MarkerEdgeColor',[0 0 1],'MarkerFaceColor',[0 0 1]);
FO = scatter(F(21:30,1),F(21:30,2),'+','SizeData',Size,'MarkerEdgeColor',[1 0.8 0.2],'MarkerFaceColor',[1 0.8 0.2]);
FT = scatter(F(31:40,1),F(31:40,2),'+','SizeData',Size,'MarkerEdgeColor',[1 0.8 0.2],'MarkerFaceColor',[1 0.8 0.2]);
FK = scatter(F(41:50,1),F(41:50,2),'+','SizeData',Size,'MarkerEdgeColor',[1 0.8 0.2],'MarkerFaceColor',[1 0.8 0.2]);
  댓글 수: 1
Harry
Harry 2017년 3월 30일
Alternatively, it would also be useful to be able to connect data points with an arrow like in this picture:
Any help is appreciated!

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

답변 (1개)

Star Strider
Star Strider 2017년 3월 30일
It would be best to classify them first and let the classification function determine the contours. See the documentation for the classify (link) function for that and plotting the results.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by