📄 readtest.java
字号:
import dataInput.*;
/**
Test the time series read code.
*/
class readTest {
public static void main( String[] args ) {
tsRead ts = new tsRead("amat_close");
double[] vals = ts.getArray();
if (vals != null) {
for (int i = 0; i < vals.length; i++) {
System.out.println(i + " " + vals[i] );
}
}
else
System.out.println("readTest: time series is null");
} // main
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -