LinAlgSolveT Method
Solve a linear system of equations
Namespace: Metas.UncLib.CoreAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.8.9053.20192
public static T[] Solve<T>(
T[][] a,
T[] y
)
where T : new(), Object, INumber<T>
Public Shared Function Solve(Of T As {New, Object, INumber(Of T)}) (
a As T()(),
y As T()
) As T()
public:
generic<typename T>
where T : gcnew(), Object, INumber<T>
static array<T>^ Solve(
array<array<T>^>^ a,
array<T>^ y
)
static member Solve :
a : 'T[][] *
y : 'T[] -> 'T[] when 'T : new() and Object and INumber<'T>
- a T
- Input Matrix
- y T
- Known Vector
- T
- Type
TSolution Vector