Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有人知道 Maxima 中的任何函数来查找 21x21 矩阵的归一化特征向量,我感到很惊讶?
我正在使用函数 dgeev 但我不相信这些特征向量是标准化的。
我很感激任何想法,本
由 dgeev 计算的特征向量确实被归一化为欧几里得范数 = 1。请记住,要计算复向量的范数(我们称之为 v),你想要
sqrt (ctranspose (v) . v)
这里的 ctranspose 是共轭转置。
ueivectors 归一化特征向量,但显然不是 eignevlaues