码迷,mamicode.com
首页 > 其他好文 > 详细

使用matlab画半透明椭圆

时间:2014-11-14 21:03:44      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   color   ar   os   使用   sp   for   

先上最终效果图:

bubuko.com,布布扣

本来是想直接用scatter和alpha来画的,结果在尝试以下代码后,发现无法显示透明效果

scatter(rand(1000,1),rand(1000,1), ‘filled‘);

alpha(0.5)

具体原因可以参考stackoverflow(http://stackoverflow.com/questions/6366404/semi-transparent-markers-in-matlab-figures)

 

无奈,只能自己用patch来画了,代码如下:

clear all
close all

x=rand([500,1])*0.5;
y= rand([500,1])*1;
s = rand([500,1])*0.03;
t= 0:pi/10:2*pi;
figure();
grid on
for i=1:size(x)
pb=patch((s(i)*sin(t)*0.5+ x(i)),(s(i)*cos(t)+y(i)),‘b‘,‘edgecolor‘,‘k‘);
alpha(pb,.3);
end
hold on
saveas(gcf,‘D:\\alphaEllipse.jpg‘)

使用matlab画半透明椭圆

标签:blog   http   io   color   ar   os   使用   sp   for   

原文地址:http://www.cnblogs.com/instant7/p/4098115.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!