Skip to content

Instantly share code, notes, and snippets.

@GuokaiLiu
Last active October 21, 2020 02:56
Show Gist options
  • Save GuokaiLiu/3c5113333d99618e40bec4bb861254f9 to your computer and use it in GitHub Desktop.
Save GuokaiLiu/3c5113333d99618e40bec4bb861254f9 to your computer and use it in GitHub Desktop.
[矩阵除法] #math
  • 1 numpy.linalg.lstsq这个是什么意思啊?Link

  • 2 Is there a function for solving xA=b in opencv? Link

  • 3 MATLAB 之 \(左除) /(右除)Link

  • 4 Scipy教程 - 线性代数库scipy.linalg Link

  • 5 数值分析,四舍五入带来的误差错误 Link

  • 6 numpy.linalg模块 Link

  • 非方阵的解法:重点参见【2, 4】

$$ XA= b $$

$$ (XA)^T=b^T $$

$$ A^TX^T=b^T $$

$$ X = solve(A^T, b^T)^T $$

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment