XbarSCreateCharts Method (Chart, Double) |
Creates a combined XBarS chart and SChart from data.
Namespace: Imsl.Chart2D.QCAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static ShewhartControlChart[] CreateCharts(
Chart chart,
double[][] x
)
Public Shared Function CreateCharts (
chart As Chart,
x As Double()()
) As ShewhartControlChart()
public:
static array<ShewhartControlChart^>^ CreateCharts(
Chart^ chart,
array<array<double>^>^ x
)
static member CreateCharts :
chart : Chart *
x : float[][] -> ShewhartControlChart[]
Parameters
- chart
- Type: Imsl.Chart2DChart
The Chart object which is the parent of the two charts being created.
- x
- Type: SystemDouble
An array of arrays containing sample data.
The data of the i-th sample is in x[i].
Each row must have at least one entry.
Return Value
Type:
ShewhartControlChart
An array of length two containing the
XBarS chart and the
SChart.
Remarks
The viewport of the XBarS chart is [0.2, 0.9] by [0.1, 0.4].
The viewport of the SChart chart is [0.2, 0.9] by [0.5, 0.8].
See Also