Welcome![Sign In][Sign Up]
Location:
Search - jc

Search list

[Delphi/CppBuilderDELPHI-JC

Description: DELPHI经典编程入门教程,新手学习Delphi必备的一本书,包含了Delphi各种经典例子-DELPHI classic programming introductory tutorial, novice learning Delphi essential book contains Delphi various classic example
Platform: | Size: 812032 | Author: 图图 | Hits:

[assembly languageUMAT-JC

Description: 适用于ABAQUS的自定义材料子程序,适用于Johnson-Cook材料模型-Apply to custom material ABAQUS subroutine for Johnson-Cook material model
Platform: | Size: 2048 | Author: 凌焕然 | Hits:

[Internet-Networkweb

Description: 一个个人主页设计,主要包括简单的设计和简单的JC特效-Profile design, simple design and simple effects of JC
Platform: | Size: 1289216 | Author: 曾强 | Hits:

[assembly languageFibonacci-Sequence

Description: 汇编 菲波那契数列 include irvine32.inc 原理:f3=f2+f1 .data str1 byte "请输入所求的菲波那契数列的位数:",0 str2 byte "此程序中菲波那契数列最大位置:",0 j dword 2 求最大位置 f1 dword 1,0,0 用3个32位表示一个96位 f2 dword 1,0,0 用3个32位表示一个96位 m dword ? .code main proc mov edx,offset str1 call writestring call readint mov m ,eax 所输入的位置 cmp m ,0 判断所输入的数据是否小于0 jng quit cmp m ,2 判断所输入的数据是否大于2 jng next1 如果小于等于2,则执行next1 sub m ,2 mov ecx ,m 表示循环m次 L1: mov edx , f1 mov ebx , f1+4 mov eax , f1+8 add edx ,dword ptr f2 adc ebx ,dword ptr f2+4 做带进位的加法,省去判断是否进位 adc eax ,dword ptr f2+8 做带进位的加法,省去判断是否进位 jc next2 判断是否进位,进位则执行next2,也说明超出96位-Compilation Fibonacci series include irvine32.inc principle: f3 = f2+f1. Data str1 byte " Please enter the demand Fibonacci series of median:" , 0 str2 byte " This program Fibonacci column maximum Location: " 0 j dword 2 the biggest position f1 dword 1,0,0 3 32 96 f2 dword 1,0,0 3 32 96 m dword? code main proc mov edx, offset str1 call writestring call readint mov m, eax the input position CMP m, 0 judged by the input data is less than 0 JNG quit CMP m, 2 determines whether the input data is larger than 2 jng next1 less than or equal to 2, the execution next1 sub m 2 mov ecx, m circulation m times L1: mov edx, f1 mov ebx, f1+4 mov eax, f1+8 add edx, dword ptr f2 adc ebx, dword ptr f2+4 to to to do the Carry addition, eliminating the need to determine whether the binary adc eax, dword ptr f2+8 do into a bit addition, eliminating the need to determine whether into a bit jc next2 determine whether the binary, binary is executed next2, also exceeded 96 position
Platform: | Size: 2048 | Author: 念迹 | Hits:

[Books05_ejc_puech_a.rar

Description: JC. Borie : Cryptage d’images médicales pour le transfert sécurisé, M. Dumas, W. Puech. – G. Lo Varco : Insertion de message long sécurisé dans une image basée sur le contenu, M. Dumas, W. Puech. – J. M. Rodrigues : Traitements d’images robustes à la compression, J.C. Bajard, W. Puech. Chercheurs en traitement d’images : – J. Triboulet MCF 61, O. Strauss MCF 61, F. Comby MCF 61, C. Fiorio MCF 27, M. Hatimi MCF 27. – P. Montesinos, LGI2P, EMA.,JC. Borie : Cryptage d’images médicales pour le transfert sécurisé, M. Dumas, W. Puech. – G. Lo Varco : Insertion de message long sécurisé dans une image basée sur le contenu, M. Dumas, W. Puech. – J. M. Rodrigues : Traitements d’images robustes à la compression, J.C. Bajard, W. Puech. Chercheurs en traitement d’images : – J. Triboulet MCF 61, O. Strauss MCF 61, F. Comby MCF 61, C. Fiorio MCF 27, M. Hatimi MCF 27. – P. Montesinos, LGI2P, EMA.
Platform: | Size: 2415616 | Author: basma_ammour | Hits:

[Other Embeded programJC-PIC10F222-2012-1209

Description: 电源管理, 用于在系统闲置一段时间后切断电源进入休眠以降低静态功耗.-power magnagement
Platform: | Size: 2048 | Author: Liu | Hits:

[Speech/Voice recognition/combinejc

Description: matlab实现加汉明窗,矩形窗,并对它们进行傅里叶变换,并实现频谱的分析。-matlab realize Jia Hanming window, rectangular window, and they are subjected to Fourier transform, and to achieve the analysis of the frequency spectrum.
Platform: | Size: 1024 | Author: | Hits:

[Software Engineeringarchitecture-course-design

Description: 组成原理课程设计 编写应用程序,实现以下功能: 通过机器指令集实现两个二进制数的四则运算。数据通过IN指令输入到A累加器中,输入菜单选项选取运算的方式(1:乘法,2:加法,3:减法,4:除法)。 输入形式:数据输入形式为二进制,第一个数据为第一个运算数,第二个数据为第二个运算数,第三个数据为菜单选项。 输出形式:通过实验箱上的out输出端口显示,显示形式为十六进制数。 实现说明: 乘法:通过循环使用加法实现乘法功能,第二个操作数作为被乘数,对其自身累加,当累加等于第一个操作数的时候,记录其累加次数,此累加次数便是out输出的结果。 加法:通过现有指令ADD实现两个操作数的加法运算 减法:通过现有指令SUB实现两个操作数的减法运算 除法:通过循环使用ADD,SUB指令和JC,JZ比较运算数的大小实现除法功能,将除数作为倍数累加,不断与被除数比较大小最后得出最终的累计次数,得出计算结果。-Architecture course design Write applications to achieve the following functions: Two binary number four machine instruction set computing. Data IN instruction input to the A accumulator input menu option selected operator (1: multiplication, 2: Addition 3: subtraction, 4: division). Input forms: the form of input data to binary, the first data for the first operand, the second data for the second operand, the third data as a menu option. Output in the form: out output port on the test box is displayed, showing the form of a hexadecimal number. Implementation Notes: Multiplication: cycle through the use of addition and multiplication function, the second operand as a multiplicand, accumulation of its own, when the accumulation is equal to the first operand, recording its accumulated number of times, the accumulated number of times is the result of the out output . Addition: the addition of the two operands through existing instruction ADD Subtraction: the su
Platform: | Size: 3156992 | Author: xyy | Hits:

[File OperateVBA-JC

Description: EXCEL操作中检测外部数据连接按钮是否通畅-failed to translate
Platform: | Size: 10240 | Author: 荣宽 | Hits:

[SCMPROTEUS-jc

Description: 包含了proteus professional的全部基本用法,如仿真、调试、PCB布线-Contains the Proteus Professional' s basic usage, such as simulation, debug, PCB wiring, etc.
Platform: | Size: 11390976 | Author: zhu | Hits:

[Special EffectsImage-Super-Resolution-Via-SR

Description: YANG JC 2010年基于稀疏表示的图像超分辨PPT,全英文-Yang JC 2010 super-resolution image based on sparse representation PPT, English
Platform: | Size: 9036800 | Author: chenkan | Hits:

[Special Effects05466111

Description: 杨建超 基于稀疏表示的图像超分辨 2010年文章-YANG JC Image Super-Resolution Via Sparse Representation
Platform: | Size: 1759232 | Author: chenkan | Hits:

[Program docgoldcode_seq_gen

Description: Gold code sequence generator Run from editor Debug (F5) JC 4/25/09 Gold code generation can sometimes be confusing and hopefully this m-file will be helpful. The m-file uses two preferred pairs of m-sequences (length 2^n-1) chips long where n=5 with length 31. The 33 gold codes (two original m-sequences plus 2^n-1 gold codes) produced in a 31x33 matrix here (with n=5) are probably not to useful for multiple access situations (CDMA) but is used here to provide a model for learning. The preferred pair used here is 52 and 5432 or 45 and 75 octal. Other preferred pairs can include values such as 53 5321, 5431, and 5421. The m-file will also check the cross-correlation values between any two codes in the matrix and should be three valued (-9,-1,7). The autocorrelation of a Gold code can also be checked. Some, not all, of the Gold codes in the matrix are balanced (16 1 s and 15 -1 s).
Platform: | Size: 2048 | Author: Chandra | Hits:

[assembly languageJC-EUO-02B-02

Description: 智能水壶,自动读取温度,高原沸点检测。多重保护-Intelligent kettle
Platform: | Size: 16384 | Author: 求解 | Hits:

[OtherCAD-VBA-JC

Description: AutoCAD的二次开发及其在地下工程中的应用-Secondary development of AutoCAD and its applications in underground engineering
Platform: | Size: 737280 | Author: net | Hits:

[OtherAutocad--VBA-Develop-JC

Description: Autocad VBA初级教程,很好的学习教程-Autocad VBA Basic Tutorial
Platform: | Size: 35840 | Author: net | Hits:

[OtherMATLAB-JC

Description: 本资料是一个用PPT制作的MATLAB教程,供XUEXI 学习MATLAB的人员使用,是一个经典的学习资料。-This information is a PPT production of the MATLAB tutorial for use by persons XUEXI learn MATLAB is a classic learning materials.
Platform: | Size: 34816 | Author: xuehongxia | Hits:

[Process-Threadjc

Description: 操作系统的进程调度(最大优先数),win32控制台应用程序-Operating system process scheduling (maximum priority number)
Platform: | Size: 280576 | Author: DAN | Hits:

[IOS5867536

Description: JC平铺为iOS滚动视图,精选ios学习编程源码,很好的参考资料。-JC tiled iOS scroll view, select learning IOS programming source code, a good reference.
Platform: | Size: 15586304 | Author: 桂花翅子 | Hits:

[File Formatjcwxz

Description: jc计算结构可靠度的fortran程序。是针对一简单算例编写的。-jc fortran program for structural reliability. For a simple example is written.
Platform: | Size: 1024 | Author: 杨吉祥 | Hits:
« 1 2 3 4 5 6 7 89 10 »

CodeBus www.codebus.net