?? mean_tst.c
字號:
/*# proc: within_mean_slope - heuristic used in constreader, tests both a# proc: distance within a factor of the given mean and# proc: a slope within a given tolerance.*/#include <defs.h>within_mean_slope(delta, slope, mean, mfactor, sthresh)float delta, slope, mean, mfactor, sthresh;{ if((delta > (mean * mfactor)) && (slope > sthresh)) return(FALSE); else return(TRUE);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -