Apply transparency to an imagesc figure
83 次查看(过去 30 天)
显示 更早的评论
Hi all,
I would like to apply transparency to a figure generated by imagesc (probably, it does affect).
I've seen that the function 'alpha' does that. I've tried the following line but it gets me and error. The image is I3
Code:
imagesc([0.3 0.75], [0.42 1.1], I3);
Line tried:
alpha(I3,'clear',0.1)
Error:
Error using alpha
Too many input arguments.
Error in Monopulse_Multipathv3 (line 175)
alpha(I3,'clear',0.1)
Could somebody help me?
Thanks in advanced.
Raúl.
0 个评论
采纳的回答
Jan
2013-4-8
What is "I3"? Dod you read the docs of alpha? You do not find a calling method with 3 inputs there. The error message tells you the same.
更多回答(1 个)
r.vaghefi
2017-9-5
You can use the following code:
imagesc([0.3 0.75], [0.42 1.1], 'AlphaData', .1)
0 个评论
另请参阅
类别
在 Help Center 和 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!