RChart Constructor (AxisXY, Double) |
Creates an R chart given sample data.
Namespace: Imsl.Chart2D.QCAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public RChart(
AxisXY axis,
double[,] x
)
Public Sub New (
axis As AxisXY,
x As Double(,)
)
public:
RChart(
AxisXY^ axis,
array<double,2>^ x
)
new :
axis : AxisXY *
x : float[,] -> RChart
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
The AxisXY parent of this node.
- x
- Type: SystemDouble
A two-dimensional array containing sample data.
The data of the i-th sample is in x[i,*].
Each sample must contain at least 2 and no more than 50 observations.
Exceptions Exception | Condition |
---|
ArgumentException | is thrown if the number of samples is less than 2
or greater than 50.
|
See Also