Matlab_Graphics(1)_2D

1.Add title ,axis Lables, and Legend to Graph:

1 x=linspace(-2*pi,2pi,100);
2 y1=sin(x);
3 y2=cos(x);
4 figure
5 plot(x,y1,x,y2);
6 title(‘Graph of sine and cosine between -2\pi and 2\pi‘);% to display Greek symbols in a title,use the tex markup ‘\‘
7 xlabel(‘-2\pi<x<2\pi‘); % x-axis label
8 ylabel(‘sine and cosine value‘);% y-axis label
9 legend(‘y=sin(x)‘,‘y=cos(x)‘); % add legend

2.change Graph axis Limits functions:

  Axis function: Axis([xmin,xmax,ymin,ymax]); or xlim([xmin,xmax])/ylim([ymin,ymax])/zlim([zmin,zmax])

3.Change Tick Marks and Tick Labels of Graph:

x=linspace(-10,10,200);
y=cos(x);
figure
plot(x,y)
h=gca; % Use gca to get the handle for the current axes
h.XTick=[-3*pi,-2*pi,-pi,0,pi,2*pi,3*pi];
h.YTick=[-1,-0.5,0,0,5,1]; % Change the location of the tick marks on the plot
                                       % by setting the XTick and YTick properties of the
                                       % axes.
h.XTickLabel={‘-3pi‘,‘-2pi‘,‘-pi‘,‘0‘,‘pi‘,‘2pi‘,‘3pi‘};
h.YTickLabel={‘min=1‘,‘-0.5‘,‘0‘,‘0.5‘,‘max=1‘};

Specify tick mark labels by setting the XTickLabel and YTickLabel porperties of the axes, Set these properties using
a cell array of string with the desired labels .If you do not specify enough text labels for all the tick marks,then

MATLAB cycles through the labels.

4. grid on : to display the major grid lines, The grid on command sets the XGrid,YGrid,and ZGrid axes prperties.

5. grid minor: to display the minor grid lines,The grid minor command sets the XMinorGrid/YMinorGrid, and ZMinorGrid properties.

6. grid off : to remove the grid lines,

7.Display Grid Lines in Single Direction:

x=-10:10;
y=x.^2;
figure
plot(x, y);
ax=gca;
ax.XGrid=‘on‘; % setting the XGrid axes property to ‘on ‘ and the YGrid axes property to ‘off‘
ax.YGrid=‘off‘;
ax.XMinorGrid=‘on‘; % setting the XGridMinor axes property to ‘on ‘ and the YGridMinor axes
ax.YMinorGrid=‘off‘; % property to ‘off‘

 8.Change Grid Line Style:

x=-10:10
y=x.^2;
figure
plot(x,y)
grid on
grid minor
ax=gca;
ax.GridLineStyle=‘-‘;         %change the grid line style using the GridLineStyle and
ax.MinorGridLineStyle=‘-‘; %MinorGridLineStyle axes properties.

  

时间: 2024-11-03 05:41:38

Matlab_Graphics(1)_2D的相关文章

手机游戏加密那点事儿_2d资源加密_1

本文章讲述利用cocos2d-x 开发手机游戏的一些加密心得.如有问题,请多指正. 更多信息详见:http://blog.csdn.net/chengyingzhilian/article/details/25540441 本文地址:http://blog.csdn.net/chengyingzhilian/article/details/25076419 好了,进入本文的主题--资源加密: 关于图片资源的打包当然是采用TexturePacker了.官方网址:http://www.codeand

手机游戏加密那点事儿_2d脚本加密

最近有一位朋友求助我,他问我关于单片机你知道多少?我说啥也不知道.他就说不行,你帮我写一写关于单片机的一篇文章,题目就是你身边的单片机.这可真是累死我呀,我根本不知道啥是单片机呀!无奈之下,只得网上搜集资料了.经过一点时间的搜索,我发现我又增加了些知识,因为我对单片机了解了一点,虽然仅仅是一点而已. 于是写下来,供读者参考参考,写的不好还请原谅哈.以下是正文: 随着科技的进步与社会的发展,我们的生活越来越丰富多彩.其中有很多非常先进的一些东西改变了我们的生活,有手机,电脑,电视,电话,单片机等等

安卓自定义view_GDI绘图 _2d绘图_canvas绘图

2014年到2016年 发生了很多事情,如今已成定局,现在想忘掉这些烦恼的事情,找点以前想干没有干的事情来做,塞满大脑就不去想了. 之前,一直想做一款挂机类游戏,各种平台和开发语言都选择过了,从html5到C,C++,C#,unity3d各种小demo写了不少,最后还是选择了安卓平台来做.... 网上看了很多列子,关于自定义view的也就是类似于WIN 下用SDK 开发窗体了,发现安卓上实现这些很绕,那些列子都是要去继承那个什么surfaceview 一大堆乱七八糟的东西.. 在WIN下做开发很

语音合成

1) 在你想出现播放器的地方插入一个层: <div id="speech_player" name="speech_player"></div> 层的id可以自己定. 2)把以下代码放在</body>前面: <script type="text/javascript" src="http://speech.w3cool.com/swf/speech.js"></script

2D命令行小游戏Beta1.0_代码

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _2D命令行小游戏Beta1_0 { class Game { public Game(int scale) { _scale = scale; peox = 1; peoy = 1; map = new int[_scale, _scale];

网址导出2015-12-31

2015-12-31导出,保存时间2016年7月16日18:01:27 简单粗暴很有效的QQ空间 [http://332319635.qzone.qq.com] QQ邮箱 斗鱼 - 全民游戏直播平台 下载网易云音乐iPhone.iPad.Android.PC版客户端 淄博汽车总站网上售票平台 欢迎使用 百度云 个人主页 - 云上的日子 你我共享 新建文件夹 cocos2dx环境配置及打包apk cocos2d 百度 VS2012|Microsoft Visual Studio 2012旗舰版(V

cocos2dx for lua 简单的翻牌动画

local x = 20 local y = display.height/2 for i = 1,16 do--创建16张 local cardFg = display.newSprite("cardFg.png",x+(i*70),y)--背景牌 self:addChild(cardFg,0) cardFg:setVisible(false) local cardBg = display.newSprite("cardBg.png",x+(i*70),y)--前

防错技术

#sidebar { position:absolute; top:0; left:0; bottom:0; width:250px; padding:0; margin:0px; overflow:auto; } #page-container { position:absolute; top:0; left:0px; margin:0; padding:0; border:0; } @media screen { #sidebar.opened + #page-container { lef

【canvas】blackboard 黑板

本来想的挺复杂实际操作了一下15分钟完成了,挺简单的. 分享一下思路: 1.创建画布 2.添加按钮 3.设置事件 没啥好说的就这样吧. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>blackboard</title> <style> *{margin: 0;padding: 0;} #wa