代码搜索:arithmetic

找到约 7,844 项符合「arithmetic」的源代码

代码结果 7,844
www.eeworm.com/read/294499/8222518

cpp arithmetic.cpp

// Arithmetic.cpp : Defines the initialization routines for the DLL. // #include "stdafx.h" #include #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[]
www.eeworm.com/read/294499/8222520

dsw arithmetic.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################
www.eeworm.com/read/294499/8222524

dsp arithmetic.dsp

# Microsoft Developer Studio Project File - Name="Arithmetic" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86
www.eeworm.com/read/294499/8222526

plg arithmetic.plg

Build Log --------------------Configuration: Arithmetic - Win32 Release-------------------- Command Lines Creating command line "rc.exe /l 0x80
www.eeworm.com/read/294499/8222533

dll arithmetic.dll

www.eeworm.com/read/392848/8322768

h arithmetic.h

//用FFT计算离散傅立叶(Fourier)变换 void math_fft(double *pr,double *pi,double *fr,double *fi,int,int,int,int); //pr,当l=0时,存放n个采样值的实部,返回时存放离散傅立叶变换的模 //当l=1时,存放傅立叶变换的n个实部,返回时存放逆傅立叶变换的模 //pi,当l=0时,存放n个采样值的虚部
www.eeworm.com/read/392848/8322769

cpp arithmetic.cpp

#include "arithmetic.h" #include "math.h" #include "matrix.h" #include "iostream.h" void math_fft(double *pr,double *pi,double *fr,double *fi, int n,int k,int l,int il) { //用FFT计算离散傅立叶(
www.eeworm.com/read/366900/9793692

cpp arithmetic.cpp

//: C10:Arithmetic.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt #include "NamespaceInt.h" void
www.eeworm.com/read/268774/11122502

h arithmetic.h

#ifndef __ARITHMETIC_H #define __ARITHMETIC_H #include "Gendef.h" class CArithmetic { private: DWORD let[256]; // array of probabilities for every leter DWORD acc[256]; // array of accumulative
www.eeworm.com/read/268774/11122510

cpp arithmetic.cpp

// Implementation of Arithmetic looseless compression. // // Implemented by Arkadi Kagan. // #include "Arithmetic.h" #include #include "../Fatal/Fatal.h" #define BITS_CODE 16 CArithmetic: