⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 example_polars.m

📁 基础程序
💻 M
字号:
% example_polars.m
% 绘制极坐标图形
t=linspace(0,2*pi);
r=sin(2*t).*cos(2*t);
% figure a: polar
subplot(2,2,1);
polar(t,r);
title('figure a: polar')
% figure b: compass
subplot(2,2,2);
z=eig(randn(20));
compass(z);
title('figure b: compass');
% figure c: feather
subplot(2,2,3);
feather(z);
title('figure c: feather');
% figure d: rose
subplot(2,2,4);
v=randn(1000,1);
rose(v);
title('figure d: rose');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -