| TwoWayAnovaUnbalancedGetFactorSumOfSquares Method |
For a given parameter order, retrives the sum of squares for the regression
parameters associated with the last factor, or interaction, in the order.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax protected void GetFactorSumOfSquares(
TwoWayAnovaUnbalancedParameterSlices paramSlices,
DoubleVector parameterSumOfSquares,
out Tuple<Factor, DoubleVector> factandSSpair,
out DoubleVector interactionSS
)
Protected Sub GetFactorSumOfSquares (
paramSlices As TwoWayAnovaUnbalancedParameterSlices,
parameterSumOfSquares As DoubleVector,
<OutAttribute> ByRef factandSSpair As Tuple(Of Factor, DoubleVector),
<OutAttribute> ByRef interactionSS As DoubleVector
)
protected:
void GetFactorSumOfSquares(
TwoWayAnovaUnbalancedParameterSlices^ paramSlices,
DoubleVector^ parameterSumOfSquares,
[OutAttribute] Tuple<Factor^, DoubleVector^>^% factandSSpair,
[OutAttribute] DoubleVector^% interactionSS
)
member GetFactorSumOfSquares :
paramSlices : TwoWayAnovaUnbalancedParameterSlices *
parameterSumOfSquares : DoubleVector *
factandSSpair : Tuple<Factor, DoubleVector> byref *
interactionSS : DoubleVector byref -> unit
Parameters
- paramSlices TwoWayAnovaUnbalancedParameterSlices
- The location of the columns in the input sum of squares array
parameterSumOfSquares of the sums of squares for the factor and interaction
regression parameters.
- parameterSumOfSquares DoubleVector
- The sum of squares for the factor and interaction
regression parameters.
- factandSSpair TupleFactor, DoubleVector
- On output contains pair where the first item is
the factor and the second is its sum of squares.
- interactionSS DoubleVector
- The interaction regression parameters sum of squares
if the there are interaction parameters.
See Also