输入变量时,大小写是不同的。
变量名字可以有数字,但不可以以数字开头
数字类型:defalt(默认)type double
输入代码 who ,可以报告已存在的变量名称。
whos ,报告变量详细信息
特殊变量常数(自己设置时不可用的)
ans
inf 无穷大
keyword 列举此种特殊变量和常数。
混用的后果
如 cos=‘this’ (此时cos是变量)
则cos(2)=h,此时cos不是三角函数。
消除变量 clear , 例如 clear cos
数字显示长度
defalt type short 四位
long 15digits
shortE longE 科学计数法,一短一长
bank currency format with 2 digits
hex 16进制
rat 保留分数形式。
代码格式 format xxx
format rat
A=3/16
clc 删除command里面的,不删除变量
⬆ 调出历史命令,使其在command里面显示。