我是靠谱客的博主 欣慰烧鹅,最近开发中收集的这篇文章主要介绍matlab 罗盘图代码,matlab实用程序(1)枝干图罗盘图轮廓图,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

matlab实用程序(1)枝干图罗盘图轮廓图

2018-09-14

matlab实用程序百例       实例11:枝干图

function shili11

h0=figure("toolbar","none",...

"position",[200 150 450 350],...

"name","实例11");

x=0:pi/20:2*pi;

y1=sin(x);

y2=cos(x);

h1=stem(x,y1+y2);

hold on

h2=plot(x,y1,"^r",x,y2,"*g");

hold off

h3=[h1(1);h2];

legend(h3,"y1+y2","y1=sin(x)","y2=cos(x)")

xlabel("自变量X");

ylabel("函数值Y");

title("正弦函数与余弦函数的线性组合");

实例12:罗盘图

function shili12

h0=figure("toolbar","none",...

"position",[200 150 450 250],...

"name","实例12");

winddirection=[54 24 65 84

256 12 235 62

125 324 34 254];

windpower=[2 5 5 3

6 8 12 7

6 14 10 8];

rdirection=winddirection*pi/180;

[x,y]=pol2cart(rdirection,windpower);

compass(x,y);

desc={"风向和风力",

"北京气象台",

"10月1日0:00到",

"10月1日12:00"};

gtext(desc)

实例13:轮廓图

function shili13

h0=figure("toolbar","none",...

"position",[200 150 450 250],...

"name","实例13");

[th,r]=meshgrid((0:10:360)*pi/180,0:0.05:1);

[x,y]=pol2cart(th,r);

z=x+i*y;

f=(z.^4-1).^(0.25);

contour(x,y,abs(f),20)

axis equal

xlabel("实部","fontsize",16);

ylabel("虚部","fontsize",16);

h=polar([0 2*pi],[0 1]);

delete(h)

hold on

contour(x,y,abs(f),20)

<

免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。

http://www.pinlue.com/style/images/nopic.gif

最后

以上就是欣慰烧鹅为你收集整理的matlab 罗盘图代码,matlab实用程序(1)枝干图罗盘图轮廓图的全部内容,希望文章能够帮你解决matlab 罗盘图代码,matlab实用程序(1)枝干图罗盘图轮廓图所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部