?? fsize.m
字號(hào):
function [m,n]=fsize(w,f)
%FSIZE Size of MVFR matrix.
% FSIZE(W,F) checks the MVFR matrix, F, for
% consistency with the associated frequency vector W
% and returns the size vector of the component matrices of F
%
% [m,n]=FSIZE(W,F) returns the number of rows of the
% component matrices in m and the number of columns in n.
% Dr M.P. Ford 4th August 1987
% Copyright (c) 1987 by GEC Engineering Research Centre & Cambridge Control Ltd
[sz]=size(f);
lw=length(w);
if rem(sz(1),lw)~=0
error('Length of freq. vector not consistent with rows of MVFR matrix')
end
sz(1)=fix(sz(1)/lw);
if nargout==2
m=sz(1);
n=sz(2);
else
m=sz;
end % if nargout
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -