stem3- different stem color and marker color for different values in an axis.

조회 수: 10 (최근 30일)
Hello all,
I have a following randomly generated stem3 plot. I wanted to know if there was any way we could assign different colors to markers corresponding different values in x-axis i,e x =1, 2,3,4 should have different colored markers?
untitled.jpg

채택된 답변

Star Strider
Star Strider 2019년 9월 10일
Two options:
x = (ones(50,1)*(1:4))'; % Create Data
y = ones(size(x,1),1)*(1:50); % Create Data
z = randi(99, size(x)); % Create Data
fc = jet(size(x,1)); % Choose Colormap
figure
hold all
for k = 1:size(x,1)
stem3(x(k,:), y(k,:), z(k,:), 'Color','b', 'MarkerFaceColor',fc(k,:))
end
hold off
grid on
view(-30,35)
figure
stem3(x(:), y(:), z(:))
hold on
scatter3(x(:), y(:), z(:), [], x(:), 'filled')
hold off
grid on
view(-30,35)
Experiment to get the result you want.

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by