Equana

Function Reference

Under the HoodFeaturesTutorialsDocs
Docs/Numerical Arrays (NumPy)/np.lstsq

Packages

Core Functions
72 functions
Free
Linear Algebra
24 functions
Free
Fourier Analysis
14 functions
Free
Data Visualization
40 functions
Free
Polynomial Functions
100 functions
Free
Symbolic Mathematics
10 functions
Free
3D Visualization (VTK)
18 functions
Free
Sparse Matrices
25 functions
Free
Finite Element (MFEM)
407 functions
Free
Scientific Computing (SciPy)
74 functions
Free
Numerical Arrays (NumPy)
602 functions
Free
ODE Solvers
20 functions
Free
Symbolic Math (SymEngine)
159 functions
Free
Linear Algebra (Eigen)
247 functions
Free
Numerical Integration (QUADPACK)
25 functions
Free
Eigenvalue Solvers (ARPACK)
85 functions
Free
LAPACK/BLAS
98 functions
Free
Sparse Direct Solver (SuperLU)
123 functions
Free
Special Functions
85 functions
Free
Back to Numerical Arrays (NumPy)

np.lstsq

Return the least-squares solution to a linear matrix equation.

Syntax

np.lstsq(a, b, rcond?)

Description

Return the least-squares solution to a linear matrix equation. Computes the vector x that approximately solves the equation a @ x = b.

Parameters

NameDescription
a- Coefficient matrix (M x N)
b- Ordinate values (M,) or (M x K)
rcond(optional)- Cutoff for small singular values

Returns

Promise<LstsqResult>