?? 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 + -