Solve A*X = B
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic double[] Solve(
double[] vectorB
)
Public Function Solve (
vectorB As Double()
) As Double()
public:
array<double>^ Solve(
array<double>^ vectorB
)
member Solve :
vectorB : float[] -> float[]
Parameters
- vectorB
- Type:System.Double[]
right hand side
Return Value
Type:
Double[]solution if A is square, least squares solution otherwise
See Also