Matlab —— 基本操作与矩阵输入

Keyword

iskeyword 用于查看matlab中的关键字
  1. answer : matlab预设变量
  2. i , j : complex number(复数)
  3. Inf : ∞
  4. eps :2.2204e-016
  5. NaN :not a number
  6. pi

Calling Priority

(From high to low)

不要用 built-in function name 或者 keyword 当作 variable name

  1. Variable
  2. Built-in function
  3. Subfunction
  4. Private function

将Variable从Workspace消除:

clear 后面不加variable name,清空所有workspace里的variable name

clear 目标变量名

Numeric Display "Format"  >>format long(e+00表示10的0次方)

Style Result Example
short

你可能感兴趣的:(Matlab —— 基本操作与矩阵输入)