How can I plot single points, each having a different color, of two arrays(as x, and y) using a for loop?

조회 수: 13 (최근 30일)
I am pretty new to matlab. I have two 12x1 arrays. I want to use one as x and one as y. I need to create a scatter plot. However, I want to make each point a unique (possibly random if easier) color. I am unsure on how to go about this. I tried reading into it and it seems I need to create a for loop, however I dont know what to put in the for loop to make this happen.

답변 (1개)

Star Strider
Star Strider 2021년 9월 11일
See the documentation on scatter to see all its optional arguments and features.
x = rand(12,1);
y = rand(12,1);
figure
scatter(x, y, [], rand(12,1), 'filled')
grid
colormap(jet(numel(x)))
colorbar
.

카테고리

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

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by