필터 지우기
필터 지우기

How to change colour in waterfall plot?

조회 수: 27 (최근 30일)
Bruno
Bruno 2017년 7월 23일
답변: KSSV 2017년 7월 24일
Hi,
I did waterfall plots and I need to do a patch to get nicer output. I want to control the colour output: black, grey
and green for the plots in the graph below.
All suggestion are welcome
t=10:20:60;
x=0:1:200;
Y=bsxfun(@(x,t) normpdf(x,t,20),x,t.');
figure
colordef white
set(gcf, 'color', [1 1 1])
h = waterfall(x,t,Y,zeros(size(Y)));
set(h, 'FaceColor', 'flat');
set(h, 'EdgeColor', 'k');
set(h, 'FaceVertexCData', rand(3,3))

채택된 답변

KSSV
KSSV 2017년 7월 24일
set(h, 'FaceVertexCData', rand(3,3))
This is the line which gives color to your surfaces. As you have three surfaces there, it should be a 3x3 matrix. Note that RGB color code has 1X3 vector for each color. So, that line selected three random colors. Say you want to fill Red color for each surface. YOu need to follow like this:
color = repmat([1 0 0],3,1)
set(h, 'FaceVertexCData', color)

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by