グレースケールで表示されているfigureに色付け
2 views (last 30 days)
Show older comments
Takashi Ichihara
on 28 Jun 2018
Commented: Takashi Ichihara
on 6 Jul 2018
MATLAB R2017bにおいて、グレースケールで表示されているfigureに色付けをしたいのですが、下記のコマンドでは出来ませんでした。
imshow(analaysSegment,[0 3], 'Borde','tight');
colormap jet
どのように修正すればよいでしょうか。 analaysSegment は512*512 のdoble型データです
0 Comments
Accepted Answer
Ichiro Maruta
on 28 Jun 2018
imshow(analaysSegment,[0 3], 'Borde','tight')
colormap(gca,jet)
でどうでしょうか?
More Answers (1)
Shigenori Nakamura a.k.a. SHiGE3
on 28 Jun 2018
Edited: Jiro Doke
on 28 Jun 2018
x=0:pi/180:pi;
y=sin(x);
figure('Color','red');
plot(x,y,'g-.');
figureのリリースノートに色の指定方法が書いてあります help figureと打ってください
0 Comments
See Also
Categories
Find more on Orange in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!