How does surf map colormatrix
조회 수: 1 (최근 30일)
이전 댓글 표시
I know surf(x,y,z,c) will use matrix c to map color, but how does it work? since matrix c actually has the size of z, instead of size of z x 3 (that's what I thought first, for I thought you specified the RGB for each element of z), how does matlab map c to different color schemes? For example,
surf(x,y,z,c); colormap winter
So how does matlab find the corresponding color based on c?
댓글 수: 0
채택된 답변
Walter Roberson
2012년 1월 19일
It uses the standard color mapping techniques: min value of c maps to the lowest entry in the color map, max value of c maps to the highest entry in the color map, everything in between maps linearly in to color map index numbers.
You can change properties to change the mapping strategy.
댓글 수: 2
Walter Roberson
2012년 1월 20일
If you do not use c then z will be copied to the internal property that c would otherwise go in (CData) and then the mapping proceeds in exactly the same way.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Orange에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!