📄 eofproj.m
字号:
function [L,s,V]=eofproj(C,E);
% EOFPROJ - projects a lag-M covariance matrix on the eigenbasis E.
% Syntax: L=eofproj(C,E); [L,s,V]=eofproj(C,E);
%
% Input: C - an M by M covariance matrix
% E - an M by M eigenbasis
%
% Output: L - eigenspectrum (the main diagonal of the projection)
% s - squared Frobenius norm of the projection
% V - E'*C*E
%
% Written by Eric Breitenberger. Version 1/21/96
% Please send comments and suggestions to eric@gi.alaska.edu
%
V=E'*C*E;
L=diag(V)';
s=sum(sum(V.^2));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -