📄 test.java
字号:
//成功
public class test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
double[] b={0.0,0.5,1.0,6.0,7.0,9.0};
double[] c={0.0,1.6,2.0,2.0,1.5,0.0};
PolynomialInterpolation r=new PolynomialInterpolation();
double rrr=r.PolynomialInterpolation(b, c,6, 9);
System.out.print(rrr);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -