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
spring web flow初學筆記
最近在看spring in action 2nd,學到spring web flow,記了一些筆記 1 怎樣開始乙個web flow,片斷如下 注意紅色部分 flowid pizzaorder flow gotoflow 前提是你已經配置好了乙個spring web flow 其中pizzaorde...
Oracle 初學筆記
1 sql語句的分類 資料定義語言 ddl ddl語句可以定義資料庫物件,以及產生對oracle資料字典的更新。ddl語句可以建立 修改和刪除各種物件,例如表 檢視 儲存過程 資料庫觸發器 資料庫鏈結以及資料庫中幾十種其他的物件。資料操縱語言 dml dml使用insert update delet...
C 初學筆記
判斷文字是否為數值型 string str1 textbox1.text string str2 textbox2.text int i1,i2 if int.tryparse str1,out i1 if int.tryparse str2,out i2 false if後面只有一句話,可以不用 ...