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: SystemDouble
right hand side 
Return Value
Type: 
Doublesolution if A is square, least squares solution otherwise
See Also