public class RealLinAlg<D> : LinAlg<RealLuResult<D>, RealNArray<D>, D>
where D : new(), Object, IRealNumber<D>
Public Class RealLinAlg(Of D As {New, Object, IRealNumber(Of D)})
Inherits LinAlg(Of RealLuResult(Of D), RealNArray(Of D), D)
generic<typename D>
where D : gcnew(), Object, IRealNumber<D>
public ref class RealLinAlg : public LinAlg<RealLuResult<D>^, RealNArray<D>^, D>
type RealLinAlg<'D when 'D : new() and Object and IRealNumber<'D>> =
class
inherit LinAlg<RealLuResult<'D>, RealNArray<'D>, 'D>
end
RealLinAlgD | Initializes a new instance of the RealLinAlgD 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 |