|  | FloatNonnegativeLeastSqResultRankDeficiencyDetected Property | 
            If a rank deficiency was detected while solving an unconstrained
            least squares problem during the nonnegative least squares iterative
            algorithm, true is returned.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic bool RankDeficiencyDetected { get; }Public ReadOnly Property RankDeficiencyDetected As Boolean
	Get
public:
property bool RankDeficiencyDetected {
	bool get ();
}member RankDeficiencyDetected : bool with get
Property Value
Boolean Remarks
RemarksThe nonnegative least squares
            algorithm is an iterative algorithm which may solve an unconstrained least
            least squares problem Bx = y during an iteration. If the matrix 
            B is rank deficient (has less than full rank) the solution is not
            unique and is somewhat suspect. If such a rank deficiency is detetected 
            while performing the nonnegative least squares algorithm the 
            RankDeficiencyDetected property will return true.
 See Also
See Also