MATLAB
Matlab Functions List
Matlab Functions List
- ~~以下只列出我笔记中提及的函数~~
- 无单独笔记的函数
- 只有一种 syntax 且无需多余说明
- 用法重复
- 使用情形少
- 符号说明
... 为可变长度参数省略
__ 为同之前语法
<> 为有默认值的可选参数
<[]> 为方括号 [] 可省, 即这里的参数可以是可变长度参数, 也可以是一个数组
Basics
Mathematics
20210126031035
20210126032351
Matrix Manipulation
Identity Test
20210126225733Link to original
Matlab Operator
Operator
| Symbol | Role |
|---|
+ | Addition; Unary plus |
- | Subtraction; Unary minus |
.* | Element-wise multiplication |
* | Matrix multiplication |
./ | Element-wise right division |
/ | Matrix right division |
.\ | Element-wise left division |
\ | Matrix left division (also known as backslash) |
.^ | Element-wise power |
^ | Matrix power |
.' | Transpose |
' | Complex conjugate transpose |
| Symbol | Role |
|---|
== | Equal to |
~= | Not equal to |
> | Greater than |
>= | Greater than or equal to |
< | Less than |
<= | Less than or equal to |
| Symbol | Role |
|---|
& | Find logical AND |
| |
&& | Find logical AND (with short-circuiting) |
| |
~ | Find logical NOT |
| Symbol | Effect on Text |
|---|
'' | Single quotation mark |
| “ | Cell delimiter |
%{ %} | Block comments that extend beyond one line |
! | Operating system command |
? | Metaclass for MATLAB class |
~ | Argument placeholder to suppress specific input or output arguments |
< & | Specify superclasses |
.? | Specify fields of name-value structure when using function argument validation |
Operator Precedence
()
~, sign +, -
^, .^, transpose ', .'
.*, *, ./, /, .\, \
+, -
:
<, <=, ==, >=, >, ~=
&
|
&&
||
Link to original
Other
Self Teaching
- Matlab语言、功能、环境基本介绍
- 表达式、数组和矩阵的基本运算
- 高维数组及运算
- 字符串、元胞、结构体
- Matlab程序设计
- 数值计算
- 可视化
- 图形界面、输入输出
- 文件 I/O (WZL CH12)
- 字符
- Table