代码搜索:Compression
找到约 9,238 项符合「Compression」的源代码
代码结果 9,238
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/187240/8839710
m a simple dpcmcode.m
%A DPCM COMPRESSION CODE
%Using format:X(n)=a1*X(n-1)+a2*X(n-2)
clc
load woman;
[m,n]=size(X);
r1=0;r2=0;r3=0;
for i=1:m
r1=r1+X(i,1)^2+X(i,2)^2;
r2=r2+X(i,1)*X(i,2);
for j=3:n
www.eeworm.com/read/159944/10585317
c lzwright.c
/*这是“BOOK修改"与“LZW Data Compression”结合的程序,只是前者对后者的变量一些的改了一下,基本上一样,但以后都对此进行修改,理论上应该正确吧~但压缩后比原文件大,可以还原*/
#include "stdio.h"
#include
#include
#define BITS 12
#define MAX_VA
www.eeworm.com/read/151663/12184607
txt fcifdifilecab.txt
使用微软的FCI/FDI库进行文件压缩
作者:Cuick
asp?id=1987">下载本文示例源代码
现在所做的项目由于log内容太多,甚至到几个G。所以,用户要求程序能自动把产生的log压缩,以利于保存和发送。本文简单介绍一下微软的FCI/FDI库,希望对大家有所帮助。
简介:
FCI(File <mark>Compression</mark> Interface)和FDI(File Decomp ...
www.eeworm.com/read/337906/12333786
pas lzss32.pas
{$A+,B-,C-,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N-,O+,P-,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{
LZ77 compression for 32-bit Delphi 2: Ported by C.J.Rankin from
the 16-bit unit LZSSUnit.
Rumour has it t
www.eeworm.com/read/337906/12333805
~pas lzss32.~pas
{$A+,B-,C-,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N-,O+,P-,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{
LZ77 compression for 32-bit Delphi 2: Ported by C.J.Rankin from
the 16-bit unit LZSSUnit.
Rumour has it t
www.eeworm.com/read/155110/11898335
txt vc调用acm音频编程接口压缩wave音频.txt
摘要: 本文介绍了在Microsoft Visual C++ 6.0下如何调用ACM(Audio <mark>Compression</mark> Manager,音频 压缩管理器)音频压缩编程接口对原始录入的Wave音频进行数据压缩。
关键字:ACM、CODECs、Wave音频、音频编码压缩
引言
音频和视频是多媒体应用程序向用户提供信息的主要方式,这些音频、视频数据一般都具有较高的采样率, ...