When working on an iterative methods when data needs to be modified and interpolated, there's 2 choices:
- keep a copy of the original data around and also create and interp object
- keep only data and create interp object every time interpolation is needed
Both cases waste memoty and second also wastes CPU cycles.
It would be nice if we could have access to the original data, and mutable access would be amazing.
When working on an iterative methods when data needs to be modified and interpolated, there's 2 choices:
Both cases waste memoty and second also wastes CPU cycles.
It would be nice if we could have access to the original data, and mutable access would be amazing.