ntu.m
来自「SOBI算法」· M 代码 · 共 25 行
M
25 行
function CN=ntu(C)
% CN=ntu(C)
% Normalize matrix C by setting the
% maximum element of each column to one
%
% version 2.01, 2/14/99 by AZ
%THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of GMD FIRST Berlin.
%
% The purpose of this software is the dissemination of
% scientific work for scientific use. The commercial
% distribution or use of this source code is prohibited.
% (c) 1996-1999 GMD FIRST Berlin, Andreas Ziehe
% - All rights reserved -
[m n]=size(C);
%if m~=n error('Matrix must be square');
%end;
for t=1:n,
CN(:,t)=C(:,t)./max(abs(C(:,t)));
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?