Skip to content

Instantly share code, notes, and snippets.

@andy0130tw
Created March 29, 2015 19:18
Show Gist options
  • Save andy0130tw/f1e8549bb3d0a8cd1cbe to your computer and use it in GitHub Desktop.
Save andy0130tw/f1e8549bb3d0a8cd1cbe to your computer and use it in GitHub Desktop.
Title
```flow
st=>start
e=>end
op0=>operation: 辨識畫布
op1=>operation: 辨識/猜測座標軸
cond1=>condition: 是否為函數圖形?
op2cd1=>operation: 函數辨識模型
op3=>operation: 嘗試各類函數
op4=>operation: 嘗試組合各類函數
op2cd2=>operation: 曲線辨識模型
op5=>operation: 組合(group)同系列的曲線
op6=>operation: 檢核誤差
st(right)->op0(right)->op1(right)->cond1
cond1(yes)->op2cd1(right)
cond1(no)->op2cd2(right)
op2cd1(right)->op3(right)->op4(right)->op6
op2cd2(right)->op5(right)->op6
op6(right)->e
```
> Written with [StackEdit](https://stackedit.io/).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment