📄 faddf.m
字号:
function fout=faddf(w,f1,f2)
%FADDF Add two MVFR matrices
% FADDF(W,F1,F2) adds F1 and F2
% F1 and F2 are both MVFR matrices
% and W the associated frequency vector.
% See also FADD,FNUL,FMULF
% Dr M.P. Ford 4th August 1987
% Copyright (c) 1987 by GEC Engineering Research Centre & Cambridge Control Ltd
[m1,n1]=fsize(w,f1);
[m2,n2]=fsize(w,f2);
if (m1~=m2)|(n1~=n2)
error('Component matrices not the same size')
end
fout=f1+f2;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -