Skip to content

Instantly share code, notes, and snippets.

@GuokaiLiu
Last active October 24, 2020 03:11
Show Gist options
  • Save GuokaiLiu/9667458117f29c546293699b237887b8 to your computer and use it in GitHub Desktop.
Save GuokaiLiu/9667458117f29c546293699b237887b8 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