Matrix ausgeben mit farbigen patches je nach Wert
이전 댓글 표시
Hallo,
ich würde gerne eine beliebig große Matrix in einem Fenster ausgeben lassen, sodass negative Werte blau (für kalt) unterlegt sind und positive Werte rot (für warm). Je kleiner bzw. größer der Wert desto blauer bzw. roter wird der Hintergrund. Ich denk mal, dass man das am besten mit patches und colormap macht aber da ich noch nicht so lang mit Matlab arbeite, weiß ich nicht wie das so richtig funktioniert. Werde aus patches einfach nicht schlau. Ich würde mich sehr über Antworten freuen
댓글 수: 1
Walter Roberson
2011년 6월 29일
Google Translation:
I would like to make an arbitrarily large matrix in a window, so that negative values are blue (for cold) and positive values highlighted in red (for hot). The smaller or larger than the number the blue or red is the background. I think sometimes that one of the best patches and makes colormap but since I work not so long with Matlab, I do not know how that worked very well. Get out of patches not just smart. I would be very happy about answers
채택된 답변
추가 답변 (2개)
Jan
2011년 7월 18일
1 개 추천
Teresa
2011년 6월 29일
0 개 추천
댓글 수: 1
Walter Roberson
2011년 6월 29일
A colormap is an N x 3 matrix, each row is an RGB triple, with the first row being for the lowest color index and the last row for the highest color index. For example,
rbmap = zeros(31,3);
rbmap(1:15,3) = linspace(1,0,15);
rbmap(17:end,1) = linspace(0,1,15);
then to use it, you would use colormap(rbmap)
To print colored text to the command window, you can use Yair's cprintf() submission, http://www.mathworks.com/matlabcentral/fileexchange/24093-cprintf-display-formatted-colored-text-in-the-command-window
Coloring the cells of a uitable is possible but also not nice to do. See http://www.mathworks.com/support/solutions/en/data/1-D782JW/index.html?product=ML&solution=1-D782JW
카테고리
도움말 센터 및 File Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!