accumulates a number of (x,y) points to find the best-least-squares parabola approximating them Generated from class MR.BestFitParabolad. This is the non-const half of the class.
More...
Inheritance diagram for MR.BestFitParabolad:Public Member Functions | |
| unsafe | BestFitParabolad () |
| Constructs an empty (default-constructed) instance. | |
| unsafe | BestFitParabolad (MR.Const_BestFitParabolad _other) |
Generated from constructor MR.BestFitParabolad.BestFitParabolad. | |
| unsafe MR.BestFitParabolad | assign (MR.Const_BestFitParabolad _other) |
Generated from method MR.BestFitParabolad.operator=. | |
| unsafe void | addPoint (double x, double y) |
accumulates one more point for parabola fitting Generated from method MR.BestFitParabolad.addPoint. | |
| unsafe void | addPoint (double x, double y, double weight) |
accumulates one more point with given weight for parabola fitting Generated from method MR.BestFitParabolad.addPoint. | |
Public Member Functions inherited from MR.Const_BestFitParabolad | |
| virtual void | Dispose () |
| unsafe | Const_BestFitParabolad () |
| Constructs an empty (default-constructed) instance. | |
| unsafe | Const_BestFitParabolad (MR.Const_BestFitParabolad _other) |
Generated from constructor MR.BestFitParabolad.BestFitParabolad. | |
| unsafe MR.Parabolad | getBestParabola (double? tol=null) |
computes the best approximating parabola from the accumulated points; Generated from method MR.BestFitParabolad.getBestParabola. Parameter tol defaults to std.numeric_limits<double>::epsilon(). | |
Additional Inherited Members | |
Protected Member Functions inherited from MR.Const_BestFitParabolad | |
| virtual unsafe void | Dispose (bool disposing) |
Protected Attributes inherited from MR.Misc.Object< Const_BestFitParabolad > | |
| bool | _IsOwningVal |
Properties inherited from MR.Misc.Object< Const_BestFitParabolad > | |
| virtual bool | _IsOwning [get] |
| Returns true if this is an owning instance, and when disposed, will destroy the underlying C++ instance. If false, we assume that the underlying C++ instance will live long enough. | |
accumulates a number of (x,y) points to find the best-least-squares parabola approximating them Generated from class MR.BestFitParabolad. This is the non-const half of the class.