|
MathPlot
|
A 2D ellipse, described by a 2x2 covariance matrix. More...
#include <mathplot.h>


Public Member Functions | |
| mpCovarianceEllipse (double cov_00=1, double cov_11=1, double cov_01=0, double quantiles=2, int segments=32, const wxString &layerName=_T("")) | |
| Default constructor. More... | |
| double | GetQuantiles () const |
| void | SetQuantiles (double q) |
| Set how many "quantiles" to draw, that is, the confidence interval of the ellipse (see above). | |
| void | SetSegments (int segments) |
| int | GetSegments () const |
| void | GetCovarianceMatrix (double &cov_00, double &cov_01, double &cov_11) const |
| Returns the elements of the current covariance matrix: | |
| void | SetCovarianceMatrix (double cov_00, double cov_01, double cov_11) |
| Changes the covariance matrix: | |
Public Member Functions inherited from mpMovableObject | |
| mpMovableObject () | |
| Default constructor (sets mpMovableObject location and rotation to (0,0,0)) | |
| void | GetCoordinateBase (double &x, double &y, double &phi) const |
| Get the current coordinate transformation. | |
| void | SetCoordinateBase (double x, double y, double phi=0) |
| Set the coordinate transformation (phi in radians, 0 means no rotation). | |
| virtual bool | HasBBox () |
| Check whether this layer has a bounding box. More... | |
| virtual double | GetMinX () |
| Get inclusive left border of bounding box. | |
| virtual double | GetMaxX () |
| Get inclusive right border of bounding box. | |
| virtual double | GetMinY () |
| Get inclusive bottom border of bounding box. | |
| virtual double | GetMaxY () |
| Get inclusive top border of bounding box. | |
Public Member Functions inherited from mpFunction | |
| mpFunction (mpLayerType layerType=mpLAYER_PLOT, const wxString &name=wxEmptyString, size_t yAxisIndex=0) | |
| Full constructor. | |
| void | SetContinuity (bool continuity) |
| Set the 'continuity' property of the layer. More... | |
| bool | GetContinuity () const |
| Gets the 'continuity' property of the layer. More... | |
| void | SetStep (unsigned int step) |
| Set step for plot. More... | |
| unsigned int | GetStep () const |
| Get step for plot. More... | |
| void | SetSymbol (mpSymbol symbol) |
| Set symbol. More... | |
| mpSymbol | GetSymbol () const |
| Get symbol. More... | |
| void | SetSymbolSize (int size) |
| Set symbol size. More... | |
| int | GetSymbolSize () const |
| Get symbol size. More... | |
| virtual bool | DrawSymbol (wxDC &dc, wxCoord x, wxCoord y) |
| Draw a symbol in place of point. More... | |
| size_t | GetYAxisIndex () const |
| void | SetYAxisIndex (size_t index) |
Public Member Functions inherited from mpLayer | |
| mpLayer (mpLayerType layerType) | |
| void | SetWindow (mpWindow &w) |
| Set the wxWindow handle. | |
| mpLayerType | GetLayerType () const |
| Get layer type: a Layer can be of different types: plot, lines, axis, info boxes, etc, this method returns the right value. More... | |
| int | GetLayerSubType () const |
| Get layer subtype: each layer type can have several flavors. More... | |
| virtual bool | IsLayerType (mpLayerType type, int *sub_type) |
| Specifies that if the layer is of type "type". More... | |
| void | Plot (wxDC &dc, mpWindow &w) |
| Plot given view of layer to the given device context. More... | |
| void | SetName (const wxString &name) |
| Set layer name. More... | |
| const wxString & | GetName () const |
| Get layer name. More... | |
| void | SetFont (const wxFont &font) |
| Set layer font. More... | |
| const wxFont & | GetFont () const |
| Get font set for this layer. More... | |
| void | SetFontColour (const wxColour &colour) |
| Set layer font foreground colour. More... | |
| const wxColour & | GetFontColour () const |
| Get font foreground colour set for this layer. More... | |
| void | SetPen (const wxPen &pen) |
| Set layer pen. More... | |
| const wxPen & | GetPen () const |
| Get pen set for this layer. More... | |
| void | SetBrush (const wxBrush &brush) |
| Set layer brush. More... | |
| const wxBrush & | GetBrush () const |
| Get brush set for this layer. More... | |
| void | SetShowName (bool show) |
| Set Name visibility. More... | |
| bool | GetShowName () const |
| Get Name visibility. More... | |
| void | SetDrawOutsideMargins (bool drawModeOutside) |
| Set Draw mode: inside or outside margins. More... | |
| bool | GetDrawOutsideMargins () const |
| Get Draw mode: inside or outside margins. More... | |
| wxBitmap | GetColourSquare (int side=16) |
| Get a small square bitmap filled with the colour of the pen used in the layer. More... | |
| bool | IsVisible () const |
| Checks whether the layer is visible or not. More... | |
| virtual void | SetVisible (bool show) |
| Sets layer visibility. More... | |
| bool | IsTractable () const |
| Checks whether the layer is tractable or not. More... | |
| virtual void | SetTractable (bool track) |
| Sets layer tractability. More... | |
| void | SetAlign (int align) |
| Set X/Y alignment. More... | |
| int | GetAlign () const |
| Get X/Y alignment. More... | |
| void | SetCanDelete (bool canDelete) |
| Set CanDelete for plot. More... | |
| bool | GetCanDelete (void) const |
| Get CanDelete for plot. More... | |
| mpLayerZOrder | GetZIndex (void) const |
| Get the ZIndex of the plot. More... | |
Protected Member Functions | |
| void | RecalculateShape () |
| Called to update the m_shape_xs, m_shape_ys vectors, whenever a parameter changes. | |
| wxDECLARE_DYNAMIC_CLASS (mpCovarianceEllipse) | |
Protected Member Functions inherited from mpMovableObject | |
| virtual void | DoPlot (wxDC &dc, mpWindow &w) |
| Pure virtual method to plot the layer. More... | |
| void | TranslatePoint (double x, double y, double &out_x, double &out_y) const |
| A method for 2D translation and rotation, using the current transformation stored in m_reference_x,m_reference_y,m_reference_phi. | |
| void | ShapeUpdated () |
| Must be called by the descendent class after updating the shape (m_shape_xs/ys), or when the transformation changes. More... | |
| wxDECLARE_DYNAMIC_CLASS (mpMovableObject) | |
Protected Member Functions inherited from mpFunction | |
| wxDECLARE_DYNAMIC_CLASS (mpFunction) | |
Protected Member Functions inherited from mpLayer | |
| void | UpdateContext (wxDC &dc) const |
| Initialize the context. | |
| virtual void | DoBeforePlot () |
| If we need to do something before plot like reinitialize some parameters ... | |
| void | CheckLog (double *x, double *y) |
| Test if we are in log axis and if true return the log of the values. | |
Protected Attributes | |
| double | m_cov_00 |
| The elements of the matrix (only 3 since cov(0,1)=cov(1,0) in any positive definite matrix). | |
| double | m_cov_11 |
| double | m_cov_01 |
| double | m_quantiles |
| int | m_segments |
| The number of line segments that build up the ellipse. | |
Protected Attributes inherited from mpMovableObject | |
| double | m_reference_x |
| The coordinates of the object (orientation "phi" is in radians). | |
| double | m_reference_y |
| double | m_reference_phi |
| std::vector< double > | m_shape_xs |
| This contains the object points, in local coordinates (to be transformed by the current transformation). | |
| std::vector< double > | m_shape_ys |
| std::vector< double > | m_trans_shape_xs |
| The buffer for the translated & rotated points (to avoid recomputing them with each mpWindow refresh). | |
| std::vector< double > | m_trans_shape_ys |
| double | m_bbox_min_x |
| The precomputed bounding box: More... | |
| double | m_bbox_max_x |
| double | m_bbox_min_y |
| double | m_bbox_max_y |
Protected Attributes inherited from mpFunction | |
| bool | m_continuous |
| Specify if the layer will be plotted as a continuous line or a set of points. Default false. | |
| mpSymbol | m_symbol |
| A symbol for the plot in place of point. Default mpNone. | |
| int | m_symbolSize |
| Size of the symbol. Default 6. | |
| int | m_symbolSize2 |
| Size of the symbol div 2. | |
| unsigned int | m_step |
| Step to get point to be draw. Default : 1. | |
| size_t | m_yAxisIndex |
| The index of the Y axis, 0 is the first axis (default) | |
Protected Attributes inherited from mpLayer | |
| const mpLayerType | m_type |
| Layer type mpLAYER_*. | |
| mpWindow * | m_win |
| The wxWindow handle. | |
| int | m_subtype |
| Layer sub type, set in constructors. | |
| wxFont | m_font |
| Layer's font. | |
| wxColour | m_fontcolour |
| Layer's font foreground colour. | |
| wxPen | m_pen |
| Layer's pen. Default Colour = Black, width = 1, style = wxPENSTYLE_SOLID. | |
| wxBrush | m_brush |
| Layer's brush. Default wxTRANSPARENT_BRUSH. | |
| wxString | m_name |
| Layer's name. | |
| bool | m_showName |
| States whether the name of the layer must be shown. Default : false. | |
| bool | m_drawOutsideMargins |
| Select if the layer should draw only inside margins or over all DC. Default : false. | |
| bool | m_visible |
| Toggles layer visibility. Default : true. | |
| bool | m_tractable |
| Is the layer tractable. | |
| int | m_flags |
| Holds label alignment. Default : mpALIGN_NE. | |
| mpRect | m_plotBoundaries |
| The boundaries for plotting curve calculated by mpWindow. | |
| bool | m_CanDelete |
| Is the layer can be deleted. | |
| mpLayerZOrder | m_ZIndex |
| The index in Z-Order to draw the layer. | |
A 2D ellipse, described by a 2x2 covariance matrix.
The relation between the multivariate Gaussian confidence interval and the "quantiles" in this class is:
The ellipse will be always centered at the origin. Use mpMovableObject::SetCoordinateBase to move it.
|
inline |
Default constructor.
Initializes to a unity diagonal covariance matrix, a 95% confidence interval (2 sigmas), 32 segments, and a continuous plot (m_continuous=true).
1.8.13