Thanks for your help
i have gotten one run-time error "Exception of type 'alglib+alglibexception' was thrown"
i used
Code:
alglib.spline1dgriddiffcubic(mainPointX, mainPointY, out d1);
the mainPointX and mainPointY have 31 double numbers.
The numbers are :
Code:
double[] mainPointX = new double[] { 19, 20.5, 57, 144, 148, 154.5, 158.5, 178, 197.5, 269, 350, 379, 409, 473, 477.5, 485, 493, 497, 534.5, 572.5, 579, 584.5, 590, 605, 608, 609, 609, 609, 609, 609, 609 };
double[] mainPointY= new double[] { 99, 92.5, 91.5, 92.5, 92.5, 92.5, 92.5, 93.5, 93.5, 95.5, 96.5, 97.5, 97.5, 98.5, 98.5, 98.5, 98.5, 98.5, 99.5, 99.5, 99.5, 99.5, 99.5, 101.5, 103.5, 105.5, 107.5, 109.5, 111.5, 113.5, 115.5 };
what is wrong for me to get this error?Regards