spline interpolation in Access/VBA

  • Thread starter Thread starter David
  • Start date Start date
D

David

Does anyone have any code or solutions for doing spline interpolation
in Access/VBA? I have similar code in fortran, but can't (read don't
know how to) use this simply from Access (the fortran code has links
to libraries that are specific to fortran - not just a matter of
re-writing the code).

Specifically, I want to do the following:

Original Data
--------------
02/03/04 14:30 523.63
02/03/04 14:35 524.94
02/03/04 14:40 525.33
..
..
etc.


New Desired Data (for example)
-----------------
02/03/04 14:30 523.63
02/03/04 14:31 523.78
02/03/04 14:32 524.05
02/03/04 14:33 524.36
02/03/04 14:34 524.65
02/03/04 14:35 524.94
02/03/04 14:36 525.02
..
..
etc.

thanks
David
 
The following google search gives dozens of likely-looking hits:

"spline interpolation" vba

HTH,
TC
 
Back
Top