分类目录归档:MATLAB

MATLAB进阶

1 高级数据类型

1.1 元胞数组

  1. 其他数组的副本为元素的多维数组
  2. 使用 cell 函数可以创建空矩阵的元胞数组
  3. 通过花括号 {} 来创建元胞数组更常见
  4. 元胞数组可用于存储不同大小的矩阵序列
M = cell(8,1);
for n = 1:8
   M{n} = magic(n);
end
M
% reuslt
M = 
    [           1]
    [ 2x2  d

Read more

MATLAB常用绘图

1 线图

x = 0:0.05:5;
y1 = sin(x.^2);
y2 = cos(x.^2);
plot(x,y1,x,y2)

附件/Pasted image 20210818175450.png

2 散点图

load patients Height Weight Systolic    % load data
scatter(Height,Weight,20,Systolic)      % color is systolic blood pressure
xlabel('He

Read more

MATLAB基础

1 MATLAB界面

主界面: 附件/Pasted image 20210818004547.png

命令行 Command Window

命令历史 Command History clc: 清除命令窗口的内容

工作

Read more

MATLAB常用函数

1 固有函数

附件/Pasted image 20210818010102.png

2 基本运算函数

附件/Pasted image 20210818005252.png

3 三角函数

附件/Pasted image 20210818005319.png

4 向量运算函数

附件/Pasted image 20210818005928.png

5 format style

style - 输出显示格式
short (默认) | long | shortE | longE | ...

附件/Pasted image 20210818142553.png

6 cylinder函数

[X,Y,Z] = cylinder 返回圆柱的 x、y 和 z 坐标而不对其绘图。返回的圆柱的半径等于 1,圆周上有 20 个等距点,底部平行于 xy 平面。

该函数以三个

Read more