You are here: Symbol Reference > Dew Namespace > Dew.Stats Namespace > Classes > TMtxMulLinReg Class > TMtxMulLinReg Methods > TMtxMulLinReg.ValidSystem Method
Dew Stats for .NET
ContentsIndexHome
PreviousUpNext
TMtxMulLinReg.ValidSystem Method

Checks if system is valid.

Syntax
C#
Visual Basic
public bool ValidSystem();

True if A is not zero matrix and A.Rows (number of observables) is equal to Y.Length.

Checks if system is valid.

A, Y

Checks if defined system is valid:

// ... // y = A*b MtxMulLinReg1.A.SetIt(3,2,false,new double[] {-5,2, 1,4, 8,0.5}); MtxMulLinReg1.Y.SetIt(false,new double[] {-2, 1,11}); MtxMulLinReg1.UseWeights = false; if (MtxMulLinReg1.ValidSystem()) MtxMulLinReg1.Recalc(); // ...
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!