📄 ftrn.m
字号:
function fout=ftrn(w,f)
%FTRN Complex conjugate transpose of MVFR matrix.
% FTRN(W,F) returns an MVFR matrix whose component
% matrices are the complex conjugate transposes
% of the component matrices of F.
% W is the associated frequency vector.
% Dr M.P. Ford 4th August 1987
% Copyright (c) 1987 by GEC Engineering Research Centre & Cambridge Control Ltd
[m,n]=fsize(w,f);
lw=length(w);
fout=zeros(n*lw,m); % Set up output matrix
k=1:m; % vector of rows of each matrix in F
p=1:n;
for i=0:lw-1 % for each frequency
fout(p+i*n,:)=f(k+i*m,:)';
end % for i=0:lw-1
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -