搜索资源列表

  1. Integer Inquiry

    0下载:
  2. UVA ONLINE JUDGE 424 Integer Inquiry One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he explored taking various sums of those numb
  3. 所属分类:其它

  1. Linear Mixed Integer Program Solver

    0下载:
  2. Linear Mixed Integer Program Solver 线性混合整数规划工具箱
  3. 所属分类:源码下载

    • 发布日期:2011-01-18
    • 文件大小:9301
    • 提供者:sxgywjj2009
  1. binDCT_zscan

    0下载:
  2. 对图像进行整数DCT变换,可用于无损压缩。-right image Integer DCT can be used lossless compression.
  3. 所属分类:压缩解压

    • 发布日期:2024-05-10
    • 文件大小:3072
    • 提供者:朱曼洁
  1. lpsolve

    0下载:
  2. 非常好,非常有名的求解线性规划和混合整型规划的源代码,用c语言编写,作者M. Berkelaar-very good, very well-known for linear programming and mixed-integer planning the source code, using the c language, the author M. Berkelaar
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-10
    • 文件大小:314368
    • 提供者:雷锋
  1. lp_solve_4.0.tar

    0下载:
  2. 利用c语言编写,编译成动态链接库而成的matlab整数规划工具箱,包含c语言源程序,-use of language, compiled DLL from the Matlab Integer Programming Toolbox contains language source c,
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-10
    • 文件大小:306176
    • 提供者:郑成勇
  1. 基于CPLD-FPGA的半整数分频器的设计

    0下载:
  2. 基于CPLD-FPGA的半整数分频器的设计,用于设计EDA-based CPLD-half FPGA integer dividers in the design, design for EDA
  3. 所属分类:VHDL编程

    • 发布日期:2024-05-10
    • 文件大小:21504
    • 提供者:胡路听
  1. 第二代小波变换的源代码

    0下载:
  2. 此程序用提升法实现第二代小波变换用的是非整数阶小波变换,采用时域实现,步骤先列后行-procedure used to upgrade Method second generation wavelet transform the non-integer-order wavelet transform, time domain realized, first out go backward steps
  3. 所属分类:matlab例程

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:丁力
  1. secondwavelet

    0下载:
  2. 此程序用提升法实现第二代小波变换 我用的是非整数阶小波变换 采用时域实现,步骤先列后行 正变换:分裂,预测,更新; 反变换:更新,预测,合并 只做一层(可以多层,而且每层的预测和更新方程不同)-procedure used to upgrade Method second generation wavelet transform I use a non-integer-order wavelet transf
  3. 所属分类:matlab例程

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:刘彦平
  1. BigIntMultiplication

    0下载:
  2. 大整数乘法例子代码 /* 递归边界,如果是1位二进制数与1位二进制数相乘,则可以直接计算 */ /*累计做1位二进制乘法运算的次数*/ /* return (X*Y) */ /* 计算n的值 */ /* 把X和Y拆分开来,令X=A*2^(n/2)+B, 左移位运算,mod = 1<<(n/2) */ /* 计算XY=AC*2^n+(AD+CB)*2^(n/2)+BD */ /* 计算A*C,再向左
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:小城
  1. FPGAprogram2

    0下载:
  2. 半整数分频器电路的VHDL源程序,供大家学习和讨论。 -half-integer frequency divider circuit VHDL source code for all learning and discussion.
  3. 所属分类:VHDL编程

    • 发布日期:2024-05-10
    • 文件大小:3072
    • 提供者:许嘉
  1. vulnerable_watermark

    0下载:
  2. 基于TS变换(一种整数变换)所实现的脆弱数字水印方法,讨论了整数水印在数字水印中的优点-transform (a Integer Transform), the fragile digital watermarking methods, Integer discussed in the digital watermark of the benefits of watermarking
  3. 所属分类:波变换

    • 发布日期:2024-05-10
    • 文件大小:200704
    • 提供者:张天翼
  1. mcu_pid_c_program

    0下载:
  2. 在使用单片机作为控制cpu时,请稍作简化,具体的PID参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采用浮点数运算,而将所有参数全部用整数,运算到最后再除以一个2的N次方数据(相当于移位),作类似定点数运算,可大大提高运算速度,根据控制精度的不同要求,当精度要求很高时,注意保留移位引起的“余数”,做好余数补偿。这个程序只是一般常用pid算法的基本架构,没有包含输入输出处理部分。-using SCM as
  3. 所属分类:C#编程

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:
  1. 0-1programming

    0下载:
  2. 0-1整数规划有很广泛的应用背景,比如指派问题,背包问题等等,实际上TSP问题也是一个0-1问题,当然这些问题都是NP问题,对于规模较大的问题用穷举法是没有办法在可接受的时间内求得最优解的,本程序只不过是一个练习,得意之处是用递归法把所有解都排列出来。另:胡运权所著的《运筹学基础及应用(第三版)》第97页的例3,我用本程序求解得到的结果是:最优解是x*=(1,0, 0, 0, 0),最优值是f(x*)=8,但书求得最优解是x*=(1,0
  3. 所属分类:matlab例程

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:wan
  1. dct_jpeg

    0下载:
  2. jpeg中DCT变换程序。为前向DCT的浮点运算,它要比整数运算更精确。该程序只适用于8×8的块变换。-jpeg DCT transformation procedure. For front to the DCT floating point calculation, it must be more precise than the integer operation. This procedure is only suitab
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:canny06
  1. intPSO

    0下载:
  2. 该程序是一整数版的PSO程序。该程序对于整数版PSO的各种应用可作为模板程序。-that the procedure was an integral version of the PSO procedures. The procedure for integer version of the PSO as a template application procedures.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-10
    • 文件大小:4096
    • 提供者:周龙
  1. bnb

    0下载:
  2. matlab 实现的整数规划工具箱,用起来挺方便的-Matlab achieve the integer programming toolbox, together with quite convenient
  3. 所属分类:matlab例程

    • 发布日期:2024-05-10
    • 文件大小:138240
    • 提供者:王晓楠
  1. 2Dwavelet

    0下载:
  2. 此程序用提升法实现第二代小波变换 %% 我用的是非整数阶小波变换 %% 采用时域实现,步骤先列后行 %% 正变换:分裂,预测,更新; %% 反变换:更新,预测,合并 %% 只做一层(可以多层,而且每层的预测和更新方程不同)-the procedure used to upgrade method is the second generation wavelet transform%% I use a non-inte
  3. 所属分类:波变换

    • 发布日期:2024-05-10
    • 文件大小:1024
    • 提供者:Michael
  1. integer

    0下载:
  2. 通常matlab不能进行整数规划,现一款混合整数的线形规划matlab m文件-Matlab usually can not be integer programming, are a mixed-integer linear programming matlab m file
  3. 所属分类:matlab例程

    • 发布日期:2024-05-10
    • 文件大小:2048
    • 提供者:李大峡
  1. Large-integer-arithmetic

    0下载:
  2. 自己写的高精度大整数运算函数,加,减,乘,除,求最大公约数-Large high-precision integer arithmetic
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-10
    • 文件大小:3072
    • 提供者:李国强
  1. Integer Programming Model for Sudoku

    0下载:
  2. An Integer Programming Model for the Sudoku Problem
  3. 所属分类:其他小程序

    • 发布日期:2024-05-10
    • 文件大小:134144
    • 提供者:roh.moh
« 12 3 4 5 6 7 8 9 10 ... 50 »

源码中国 www.ymcn.org