public class ComplexLinAlg<D> : LinAlg<ComplexLuResult<D>, ComplexNArray<D>, Complex<D>>
where D : new(), Object, IRealNumber<D>
Public Class ComplexLinAlg(Of D As {New, Object, IRealNumber(Of D)})
	Inherits LinAlg(Of ComplexLuResult(Of D), ComplexNArray(Of D), Complex(Of D))generic<typename D>
where D : gcnew(), Object, IRealNumber<D>
public ref class ComplexLinAlg : public LinAlg<ComplexLuResult<D>^, ComplexNArray<D>^, Complex<D>>type ComplexLinAlg<'D when 'D : new() and Object and IRealNumber<'D>> = 
    class
        inherit LinAlg<ComplexLuResult<'D>, ComplexNArray<'D>, Complex<'D>>
    end| ComplexLinAlgD | Initializes a new instance of the ComplexLinAlgD class | 
| Cholesky | Cholesky decomposition A = LL' | 
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | 
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | 
| GeneralLstSqrSolve | Solve linear general least-squares problem x = inv(A'inv(V)A)A'inv(V)y | 
| GetHashCode | Serves as the default hash function. (Inherited from Object) | 
| GetType | Gets the Type of the current instance. (Inherited from Object) | 
| LstSqrSolve | Solve linear least-squares problem | 
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | 
| Qr | QR decomposition A = QR | 
| Svd | Singular value decomposition A = UWV' | 
| ToString | Returns a string that represents the current object. (Inherited from Object) | 
| WeightedLstSqrSolve | Solve linear weighted least-squares problem x = inv(A'(W'+W)A)A'(W'+W)y |