代码搜索:Predictive
找到约 274 项符合「Predictive」的源代码
代码结果 274
www.eeworm.com/read/381211/9103738
m fg_08_25.m
% fg_08_25 Predictive compression -
N=6; K=40000;
% Read the signal.
fid=fopen('signal_2.txt');
f=fscanf(fid,'%7d%8d%8d%8d%8d%8d%8d%8d%8d%8d\n',K+5000);
fclose(fid);
d=f(5001:K+5000);
%
www.eeworm.com/read/381211/9103755
m fg_08_24.m
% fg_08_24 Predictive compression - d and e power spectra.
N=6; K=40000; L=K+N; M=1024; fs=20;
% Read the signal.
fid=fopen(['signal_2.txt']);
f=fscanf(fid,'%7d%8d%8d%8d%8d%8d%8d%8d%8d%8d\n'
www.eeworm.com/read/381211/9103786
m fg_08_23.m
% fg_08_23 Predictive compression - waveform & residue
N=6; K=40000; L=K+N; M=1024;
% Read the signal.
fid=fopen(['signal_2.txt']);
f=fscanf(fid,'%7d%8d%8d%8d%8d%8d%8d%8d%8d%8d\n',L+5000);
fc
www.eeworm.com/read/381211/9103870
m fg_10_03.m
% fg_10_03 Predictive coding of v1.
v1=[1:7,6:-1:0,1:4,3:-1:1,2:7,6:-1:2];
N=2;
R=autocovar_mat(v1,N);
r=crosscovar([0,v1(1:31)],v1,N);
b=R\r;
e=round(v1-filter(b,1,v1));
Entropy_of_e=entrop