ILNumerics - Technical Application Development
Assembly: ILNumerics.Toolboxes.Drawing2 (in ILNumerics.Toolboxes.Drawing2.dll) Version: 5.5.0.0 (5.5.7503.3146)
Call this method to update the positions of the area plots.
[ILNumerics Drawing2 Toolbox]
Namespace: ILNumerics.Drawing.Plotting
Assembly: ILNumerics.Toolboxes.Drawing2 (in ILNumerics.Toolboxes.Drawing2.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public void Update( InArray<float> X = null, InArray<float> Y = null, Nullable<float> spacing = null )
Parameters
- X (Optional)
- Type: ILNumericsInArraySingle
[optional] X is a [1 x n] row vector. It contains the x coordinates for the area plots. - Y (Optional)
- Type: ILNumericsInArraySingle
[optional] Y is a [m x n] matrix. For the stacked area plot, this matrix contains vertical distances. Here, each row is added to the previous row to create the stacked area plot. For the layered area plot, this matrix contains the vertical positions for each area plot. - spacing (Optional)
- Type: SystemNullableSingle
[optional] Spacing defines the distance between the area plots on the Z-axis.
Exceptions
Exception | Condition |
---|---|
ArgumentException | If input parameter X is empty. |
ArgumentException | If input parameter Y is empty. |
ArgumentException | If input parameter X is not a matrix. |
ArgumentException | If input parameter Y is not a matrix. |
ArgumentException | If input parameters X and Y do not have the same number of columns. |
ArgumentException | If input parameter spacing is less than 0. |
Remarks
[ILNumerics Drawing2 Toolbox]
See Also