disp("Hello World") // 显示输出数据
name = input("name = ") //输入数据
help sin //help 命令名 ,获取帮助信息
apropos logarithm //在帮助文件中搜索logarithm
数值表示 0.5 可以用 .5 表示,科学记数法: 2e-3 2e1 3.12e2, 数组 x = [1,3,4] 等价于 x = [1 3 4]
a = (-1+2-4)*8
b = 2^3 //2的三次方(8)
%pi //常量pi, %名字,如%e 自然数, %t true, %f false,%i 虚数
a = sin(%pi/6) // asin,acos,atan
b = cos(%pi/3)
c = tan(%pi/4)
x = 1
y = 2
x = x+y
x = 2+4*%i //复数
y = 3+5*%i //复数
x+y //复数运算,x-y,x*y,x/y
real(x) //2,复数实部
imag(x) //4,复数虚部
atan(imag(x)/real(x)) //复数辐角主值
exp(3) // 相当于 %e ^ 3 (20.085537)
x = [1,2,3,4,5,6,7,8,9] //数组
y = [3,4,5,6,7,8,9,10,11]
plot2d(x,y) //画图,x,y 坐标,用直线连接
plot2d(x,y,style=-1) //画图,x,y 坐标,用散点表示
plot2d(x,y,leg="description") //直线的描述
xtitle("this is title") //图的标题
clf() //清空上图的数据
//矩阵运算
X1 + 2*X2 - X3 = 1
-2X1 - 6*X2 + 4*X3 = -2
- X1 - 3*X2 + 3*X3 = 1
a = [1 2 -1;-2 -6 4;-1 -3 3]
b = [1;-2;1]
x = a\b
b - a*x