accumulates a number of (x,y) points to find the best-least-squares parabola approximating them Generated from class MR.BestFitParabolaf. This is the non-const half of the class.
More...
Inheritance diagram for MR.BestFitParabolaf:Public Member Functions | |
| unsafe | BestFitParabolaf () |
| Constructs an empty (default-constructed) instance. | |
| unsafe | BestFitParabolaf (MR.Const_BestFitParabolaf _other) |
Generated from constructor MR.BestFitParabolaf.BestFitParabolaf. | |
| unsafe MR.BestFitParabolaf | assign (MR.Const_BestFitParabolaf _other) |
Generated from method MR.BestFitParabolaf.operator=. | |
| unsafe void | addPoint (float x, float y) |
accumulates one more point for parabola fitting Generated from method MR.BestFitParabolaf.addPoint. | |
| unsafe void | addPoint (float x, float y, float weight) |
accumulates one more point with given weight for parabola fitting Generated from method MR.BestFitParabolaf.addPoint. | |
Public Member Functions inherited from MR.Const_BestFitParabolaf | |
| virtual void | Dispose () |
| unsafe | Const_BestFitParabolaf () |
| Constructs an empty (default-constructed) instance. | |
| unsafe | Const_BestFitParabolaf (MR.Const_BestFitParabolaf _other) |
Generated from constructor MR.BestFitParabolaf.BestFitParabolaf. | |
| unsafe MR.Parabolaf | getBestParabola (float? tol=null) |
computes the best approximating parabola from the accumulated points; Generated from method MR.BestFitParabolaf.getBestParabola. Parameter tol defaults to std.numeric_limits<float>::epsilon(). | |
Additional Inherited Members | |
Protected Member Functions inherited from MR.Const_BestFitParabolaf | |
| virtual unsafe void | Dispose (bool disposing) |
Protected Attributes inherited from MR.Misc.Object< Const_BestFitParabolaf > | |
| bool | _IsOwningVal |
Properties inherited from MR.Misc.Object< Const_BestFitParabolaf > | |
| 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.BestFitParabolaf. This is the non-const half of the class.