📄 readouto.m
字号:
% h = readouto(filename,char)
% First read data from file(the coefficients of low
% pass filter), then plot the frequency response of
% the filter.
% The data file is come from the Fortran 90
% application or Matlab data file. Data format
% is double precision
% This program is used in orthogonal case of filter
% bank design
function h = readouto(filename)
fid = fopen(filename,'r');
x=fread(fid,'real*8');
x=x(:);
fclose(fid);
N = max(size(x));
h=[x;antieye(N)*x];
% if nargin == 2
% freqplot(h,1,char)
% end
% END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -