LinAlgQrT(T, T, T) Method
QR decomposition A = QR
Namespace: Metas.UncLib.CoreAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.8.9053.20192
public static void Qr<T>(
T[][] a,
out T[][] q,
out T[][] r
)
where T : new(), Object, IRealNumber<T>
Public Shared Sub Qr(Of T As {New, Object, IRealNumber(Of T)}) (
a As T()(),
<OutAttribute> ByRef q As T()(),
<OutAttribute> ByRef r As T()()
)
public:
generic<typename T>
where T : gcnew(), Object, IRealNumber<T>
static void Qr(
array<array<T>^>^ a,
[OutAttribute] array<array<T>^>^% q,
[OutAttribute] array<array<T>^>^% r
)
static member Qr :
a : 'T[][] *
q : 'T[][] byref *
r : 'T[][] byref -> unit when 'T : new() and Object and IRealNumber<'T>
- a T
- Matrix A
- q T
- Matrix Q
- r T
- Matrix R
- T
- Real Type