No BSD License
-
[d]=bandpass(c,flp,fhi,npts,d...
-
bilinear(z, p, k, fs, fp, fp1)
BILINEAR Bilinear transformation with optional frequency prewarping.
-
buttap(n)
BUTTAP Butterworth analog lowpass filter prototype.
-
butter(n, Wn, varargin)
BUTTER Butterworth digital and analog filter design.
-
checkfile(file)
-
filtfilt(b,a,x)
FILTFILT Zero-phase forward and reverse digital filtering.
-
font(h,S);
Sets the font to times helvetica and size S.
-
fsa(x,interval,output,fopen_o...
FSA Fourier Spectral Analysis
-
iirchk(Wn,varargin)
IIRCHK Parameter checking for BUTTER, CHEBY1, CHEBY2, and ELLIP.
-
out=teqcplot(files);
TEQCPLOT Read and plot TEQC report files
-
out=teqcspec(files);
-
plotclr(x,y,v,prn,marker)
clement.ogaja@gmail.com
-
polarview(theta,rho,z,prn)
POLARVIEW Polar image plot.
-
readfile(N,n,i,A,filen,file)
See also TEQCSPEC, CHECKFILE, SCANFILE
-
replace(A, S1, S2) ;
REPLACE - Replace Elements
-
scanfile(file)
-
View all files
from
TEQCSPEC
by Clement Ogaja
TEQC multipath spectrum analysis
|
| checkfile(file)
|
function L = checkfile(file)
fid=fopen(file);
L=0;
while 1
tline = fgetl(fid);
if ~ischar(tline), break, end
L = L + 1;
end
fclose(fid);
%fid=fopen('Ball1830.mp1');
%ln=0;
%while 1
% ln = ln+1;
% tline = fgetl(fid);
% if ~ischar(tline), break, end
% if ln==5, % get number of satellites in first header
% disp(tline);
% sats=str2num(tline);
% end
%end
%fclose(fid);
|
|
Contact us at files@mathworks.com