32.文献阅读笔记 简介 题目 Flowing convnets for human pose estimation in videos 作者 Tomas Pfister, James Charles, and Andrew Zisserman, ICCV, 2015. 原文链接 https://arxiv.org/pdf/1506.02897.pdf 关键词 Human Pose Estimation in Videos 研究问题 视频…
方阵的施密特正交化与相似对角化 施密特正交化
施密特正交化步骤 example
略 相似对角化
相似对角化步骤 step1:
step2:
step3:
step4: example
注:特征值的个数与秩无关
A {{-3, 6}, {-10, 6}};
Eigenvalues[A]
V Eigenvectors[A];
P {V[[1]], V[[2]]};
P Transpo…
// 2.3 函数表达式可以传递参数还可以有返回值,使用方法和前面具名函数类似let sum function (x, y) { // 形参xx||0yy||0return x y}let re sum() // 实参console.log(re) // 3 function sum(x 0, y 0) {return x y}console.log(sum()) // 0console.log(s…