1 Star 0 Fork 0

zp/Fall-Detection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
drawEllipse.m 390 Bytes
一键复制 编辑 原始数据 按行查看 历史
harishrithish7 提交于 2016-08-17 01:28 . Fall Detection
function drawEllipse(Cx,Cy,Rx,Ry,Rotation)
% Create an ellipse
t = linspace(-4,4);
NoiseLevel = 0;
x = Rx * cos(t);
y = Ry * sin(t);
nx = x*cos(Rotation)-y*sin(Rotation) + Cx + randn(size(t))*NoiseLevel;
ny = x*sin(Rotation)+y*cos(Rotation) + Cy + randn(size(t))*NoiseLevel;
% Show the window
hold on;
plot(nx,ny,'r-');
plot(Cx,Cy,'go','MarkerSize',2,'LineWidth',2);
hold off;
return
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Matlab
1
https://gitee.com/zpaskt/Fall-Detection.git
git@gitee.com:zpaskt/Fall-Detection.git
zpaskt
Fall-Detection
Fall-Detection
master

搜索帮助