About use "surf" to paintings matrix problem
1 次查看(过去 30 天)
显示 更早的评论
HI,
I have a matrix of a 8x8 matrix
Code chart is as follows
clear all; clc;
a=[ 56 61 63 66 66 62 55 59
56 59 61 62 61 60 54 63
60 61 60 58 58 65 58 71
64 63 62 61 62 64 58 74
71 65 65 66 64 68 66 73
79 67 70 66 69 70 68 71
85 71 73 73 75 74 69 68
88 80 84 88 94 100 89 75];
surf(a);
axis([1,8,1,8]);
colorbar;
view(0,-90);
The color of the drawn graph is not the same as I want
ex: the original value of 100 (8 line 6 position)
How is not the same color?
What's wrong with me?
thanks
0 个评论
回答(2 个)
Walter Roberson
2012-9-15
surf() uses the current colormap. They might have used a different colormap than you are using.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!