I have a program that calculates many lines at one time. For example, I use dataset A and dataset B to calculate a spline called C. The data in A and B is always the same; therefore, the spline C is always the same. In my program, I store spline C in the following variable:
Code:
alglib.spline1dinterpolant compLine;
In an effort to speed up the program, I would like to store "compLine" in an SQL database, that way I can recall the line rather than recalling all of the data in A and B just to recalculate line C.
Any help would be GREATLY appreciated!!
THANKS!
-Keegan