Matlab Graphics - Curve 绘图

本文介绍了Matlab中的图形绘制,包括曲线、极坐标图的创建,使用了plot、polar、plot3等函数,并提到了Ezplot函数方便绘制隐式函数。此外,还讲解了如何创建多个图形窗口以及线条样式和符号的设置。
摘要由CSDN通过智能技术生成

1.Vocabulary:

  • plot 绘图
  • x-axis x轴
  • display 显示
  • annotate 注释
  • explicit 显式
  • implicit 隐式
  • polar coordinates 极坐标
  • parameter 参数
  • boldface 黑体
  • title 标题
  • radian 弧度
  • radius 半径

2.Some functions

  • plot
  • polar
  • plot3
  • title
  • xlabel
  • ylabel
  • figure
  • legend
  • subplot
  • grid on
  • grid off

3.Plot

>> x = [1 2 3 4 5 6]; y = [1 -1.5 2 -3 -1 7];
>> plot(x, y);

这里写图片描述

>> a =[1:6; 1 4 9 16 25 36];
>> plot(a); % plot six lines (1, 1); (2, 4); (3, 9); (4, 16); (5, 25); (6, 36)

这里写图片描述

x = linspace(0,2*pi);
y = sin(x);
plot(x,y);
title('sin x') %添加标题
xlabel('x axis') %添加x轴标签
ylabel('y axis') %添加y轴标签
grid on %打开网格

这里写图片描述

t = linspac
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值