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

Search list

[Other resourcejc-16c5x

Description: PIC16C5X系列单片机应用手册,详细介绍了,硬件结构,软件开发,应用实例等
Platform: | Size: 2618546 | Author: 大师傅 | Hits:

[Other resourcejc-12c5x

Description: PIC12C5X系列单片机应用手册,详细介绍了,硬件结构,软件开发,应用实例等
Platform: | Size: 461427 | Author: 大师傅 | Hits:

[Multimedia programjc-AVI

Description: 处理avi视频的源代码,小巧方便 avi编码技术
Platform: | Size: 93198 | Author: 陈忠明 | Hits:

[OS programjc

Description: 经典C源程序100例
Platform: | Size: 18531 | Author: 周增 | Hits:

[assembly languagejc

Description: 汇编语言的基础教程,以及与c程序语言的相关内容
Platform: | Size: 1840020 | Author: 李球 | Hits:

[GUI DevelopJCreator Pro

Description: JC 编辑器-JC Editor
Platform: | Size: 1457773 | Author: 王立冬 | Hits:

[Other resourcezhong

Description: 系统聚类算法K-means 属于聚类分析中一种基本的划分方法,常采用误差平方和准则函数作为聚类准则,该算法在处理大数据集时是相对可伸缩且高效率的,同时具有潜在的数据并行性。但是这种算法依赖于初始值的选择以及数据的输入顺序;此外,当运用误差平方和准则函数测度聚类效果时,如果各簇的形状和大小差别很大,为使误差平方和 Jc 值达到最小有可能出现将大的聚类簇分割的现象。-system clustering algorithm K-means cluster analysis is a basic method is often used squared error criterion function as a cluster criteria, the algorithm in handling large data sets are relatively scalable, high-efficient and has the potential of data parallelism. However, this algorithm depends on the initial value of the options and data input sequence; In addition, when using square error of measurement function and the criteria clustering effect, if the cluster size and shape vary greatly, the square error for the Jc value and minimize the possibility of the emergence of large cluster segmentation clustering phenomenon.
Platform: | Size: 1834 | Author: tang | Hits:

[CSharp模拟系统多进程的运行

Description: 这是模拟三个进程如何在系统的调度下运行的,其结果存放在jc.c文件中,可便初学都对进程的运行有更深该的认识。-This is how the simulation process in three Scheduling System running, and its findings jc.c stored in a document, then the process of learning all of the operations have a better understanding.
Platform: | Size: 1909 | Author: 王重华 | Hits:

[assembly language闰年计算

Description:

 data segment    ;定义数据段

    infon db 0dh,0ah,'Please input a year: $'
    Y db 0dh,0ah,'This is a leap year! $'
    N db 0dh,0ah,'This is not a leap year! $'
    w dw 0
    buf db 8
        db ?
        db 8 dup(?)
data ends
 
stack segment stack
    db 200 dup(0)
stack ends
 
code segment
          assume ds:data,ss:stack,cs:code
    start:mov ax,data
          mov ds,ax
         
          lea dx,infon ;在屏幕上显示提示信息
          mov ah,9
          int 21h
 
          lea dx,buf    ;从键盘输入年份字符串
          mov ah,10
          int 21h
         
          mov cl, [buf+1]
          lea di,buf+2
          call datacate
          call ifyears
          jc a1
         
          lea dx,n
          mov ah,9
          int 21h
          jmp exit
    a1:   lea dx,y
          mov ah,9
          int 21h
    exit: mov ah,4ch
          int 21h
      
 
 
 datacate proc near;
          push cx;                                                      
          dec cx
          lea si,buf+2
     tt1: inc si
          loop tt1
          ;lea si,cx[di]
          pop cx
    
     
          mov dh,30h
          mov bl,10
          mov ax,1
      l1: push ax
          sub byte ptr [si],dh
          mul byte ptr [si]
          add w,ax
          pop ax
          mul bl
          dec si
          loop l1
          ret
 datacate endp
 
 
   ifyears proc near
           push bx
           push cx
           push dx
           mov ax,w
           mov   cx,ax
           mov dx,0
           mov bx,4
           div bx
           cmp dx,0
           jnz lab1
           mov   ax,cx
           mov bx,100
           div bx
           cmp dx,0
           jnz lab2
           mov ax,cx
           mov bx,400
           div bx
           cmp dx,0
           jz lab2
     lab1: clc
           jmp lab3
     lab2: stc
     lab3: pop dx
           pop cx
           pop bx
           ret
   ifyears endp
code ends
   end start
     




[广告] 2008年最受关注楼盘


Platform: | Size: 10752 | Author: jackdawson0@ | Hits:

[Mathimatics-Numerical algorithmssf

Description: 大数相乘、计算时间、josep问题、计算JC、分形图形-multiply large numbers, computation time, Josep, calculated JC, fractal graphics
Platform: | Size: 3072 | Author: 张志明 | Hits:

[CSharp1jc

Description: 结构可靠度分析——JC1-structural reliability analysis-- JC1
Platform: | Size: 1024 | Author: ddd | Hits:

[CSharp3jc

Description: 结构可靠度分析——JC3-structural reliability analysis-- JC3
Platform: | Size: 1024 | Author: ddd | Hits:

[CSharpJC

Description: 这是完整的程序,说明在JC5.rar-This is a complete procedures illustrate the JC5.rar
Platform: | Size: 2048 | Author: ddd | Hits:

[Booksc++jc

Description: C++教程-C Guide
Platform: | Size: 636928 | Author: 杨森雨 | Hits:

[Multimedia programJC自选点歌程序

Description: 一个很小的程序,能完成网络的点歌播放功能,用的是MIDAS中的SocketConnection联接。-a small procedure, the network will be completed parlors player, it was the MIDAS SocketConnection connectivity.
Platform: | Size: 49152 | Author: 黄飞 | Hits:

[AI-NN-PRzhong

Description: 系统聚类算法K-means 属于聚类分析中一种基本的划分方法,常采用误差平方和准则函数作为聚类准则,该算法在处理大数据集时是相对可伸缩且高效率的,同时具有潜在的数据并行性。但是这种算法依赖于初始值的选择以及数据的输入顺序;此外,当运用误差平方和准则函数测度聚类效果时,如果各簇的形状和大小差别很大,为使误差平方和 Jc 值达到最小有可能出现将大的聚类簇分割的现象。-system clustering algorithm K-means cluster analysis is a basic method is often used squared error criterion function as a cluster criteria, the algorithm in handling large data sets are relatively scalable, high-efficient and has the potential of data parallelism. However, this algorithm depends on the initial value of the options and data input sequence; In addition, when using square error of measurement function and the criteria clustering effect, if the cluster size and shape vary greatly, the square error for the Jc value and minimize the possibility of the emergence of large cluster segmentation clustering phenomenon.
Platform: | Size: 2048 | Author: tang | Hits:

[CSharp模拟系统多进程的运行

Description: 这是模拟三个进程如何在系统的调度下运行的,其结果存放在jc.c文件中,可便初学都对进程的运行有更深该的认识。-This is how the simulation process in three Scheduling System running, and its findings jc.c stored in a document, then the process of learning all of the operations have a better understanding.
Platform: | Size: 2048 | Author: 王重华 | Hits:

[ELanguageJC 1.0

Description: JC1.0。本编译器包含完整的文档与程序。借助 Lex & Bison, masm 开发。语句5个,支持混合运算。输入输出作为两个 IO 语句(函数调用),由汇编实现并编译为 io.obj,将由 Link 链接。生成 EXE。整个流程完整清晰,代码易读。-JC1.0. The compiler includes complete documentation and procedures. With Lex Bison, can develop. Statement 5, support mixed computing. Input and output as two IO statement (function call), compiled by the compiler to achieve and io.obj will link Link. EXE generation. The entire process, complete and clear, legible code.
Platform: | Size: 1203200 | Author: | Hits:

[Otherjavaproject

Description: 用java开发的一个进销存,开发工具jc, 数据库sql server-with the development of a java Invoicing, jc development tools, database sql server
Platform: | Size: 191488 | Author: 望强 | Hits:

[OtherAS-jc

Description: ... .....保存图片-... ... ..... save photos
Platform: | Size: 2365440 | Author: king | Hits:
« 1 2 34 5 6 7 8 9 10 »

CodeBus www.codebus.net