setting color using surf in axes (guide)

조회 수: 1 (최근 30일)
UNAL
UNAL 2017년 6월 19일
답변: KSSV 2017년 6월 20일
Dear all,
I'm doing a surface plot in an axes object (guide), but the surface don't get any color. What should I do to get color in the surface?.
I'm using following commands:
axes(handles.axes1)
[X,Y,Z] = peaks(25);
C = X.*Y;
surf(X,Y,Z,C)
Regards,
Luis
  댓글 수: 1
UNAL
UNAL 2017년 6월 19일
The following code works, but when I use alpha(.5) or surf(X,Y,Z,CO,'FaceColor', 'interp','FaceAlpha',0.5), the surface get without color. What should I do to get transparency?:
axes(handles.axes1)
[X,Y,Z] = peaks(25);
CO(:,:,1) = zeros(25);
CO(:,:,2) = ones(25)*0.2;
CO(:,:,3) = abs(Z)./max(max(Z));
surf(X,Y,Z,CO,'FaceColor', 'interp')
Thanks

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

답변 (1개)

KSSV
KSSV 2017년 6월 20일
[X,Y,Z] = peaks(25);
CO(:,:,1) = zeros(25);
CO(:,:,2) = ones(25)*0.2;
CO(:,:,3) = abs(Z)./max(max(Z));
surf(X,Y,Z,CO)
alpha 0.5 ;

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by