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

Search list

[Static controlaudioio

Description: 本期国外新书通报为武汉大学外国教材中心室1999年12月份入藏的原版新书共计314种。其中,本中心经费入藏生物科学新书46种,采用《中国图书馆图书分类法》(以下简称“ 中图法”)分类;图书馆经费入藏新书268种,采用《中国科学院图书馆图书分类法》(以下简称“科图法”)分类。新书的著录项目包括:分类著者号(即索书号)、顺序号、书名、作 者、出版社、出版年、页码等。新书按分类排列,配有书名中文译名(仅供参考),书后备有西文书名字母顺序索引。所录新书欢迎读者前来本室查阅。-briefing book for teaching foreign Wuhan University Center Room in December 1999 Collecting the original book Total 314 species. Among them, the Center for Biological Science Book Collecting 46, "Chinese Library Classification" (hereinafter referred to as "CLC") classification; Collecting books for the Library of 268 species, "the Chinese Academy of Sciences Library Classification" (hereinafter referred to as "Section Method ") classification. Description of the book include : Author classification (that is, Call), in descending order, the title, author, publisher, publishing, and other pages. Book arranged by classification, is equipped with the title Hansard (U.S.), reserve a book entitled Western alphabetical index. Recorded books invite readers t
Platform: | Size: 395650 | Author: 胡河宇 | Hits:

[Other resourceclc

Description: 用matalb程序来实现求一个连通图的最小生成树-matalb procedures used to achieve a graph for the minimum spanning tree
Platform: | Size: 2760 | Author: Selena | Hits:

[Othergonglvpumatlab

Description: 功率谱估计matlab防真程序 从介绍功率谱的估计原理入手,分析了经典谱估计和现代谱估计两类估计方法的原理、各自特点及在Matlab中的实现方法率谱估计 周期图法 AR参数法-power spectrum estimation procedures Matlab defense from introducing real power spectrum estimation principle start, Analysis of the spectral estimation classic and modern spectral estimation Estimation of two principles, and their respective characteristics in Matlab method of spectral estimation rate cycle CLC AR parameter method
Platform: | Size: 11440 | Author: lase | Hits:

[Other resourcemallat.m

Description: 小波谱分析mallat算法经典程序 clc clear %% 1.正弦波定义 f1=50 % 频率1 f2=100 % 频率2
Platform: | Size: 3371 | Author: wudong | Hits:

[Special Effectsclc

Description: 不使用中值滤波函数,直接运用MATLAB编写中值滤波程序
Platform: | Size: 5205 | Author: wanmei | Hits:

[WEB Codematlab常用命令

Description: 有关命令行环境的一些操作: (1) clc 擦去一页命令窗口,光标回屏幕左上角 (2) clear 从工作空间清除所有变量 (3) clf 清除图形窗口内容-the command-line environment for the operation of : (a) liquidchromatographic order to remove a window screen cursor to the upper left corner (2) clear from the work space to eliminate all variables (3) removal of CLF graphical content window
Platform: | Size: 4784 | 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:

[SourceCodelssvm

Description: %% 清空环境 clc clear load wine; train = [wine(1:30,:);wine(60:95,:);wine(131:153,:)]; train_label = [wine_labels(1:30);wine_labels(60:95);wine_labels(131:153)]; test = [wine(31:59,:);wine(96:130,:);wine(154:178,:)]; test_label = [wine_labels(31:59);wine_labels(96:130);wine_labels(154:178)]; [train,pstrain] = mapminmax(train'); pstrain.ymin = 0; pstrain.ymax = 1; [train,pstrain] = mapminmax(train,pstrain); [test,pstest] = mapminmax(test'); pstest.ymin = 0; pstest.ymax = 1; [test,pstest] = mapminmax(test,pstest); train = train'; test = test'; %% 参数初始化 %粒子群算法中的两个参数 c1 = 1.6; % c1 belongs to [0,2] c2 = 1.5; % c2 belongs to [0,2] maxgen=300; % 进化次数 sizepop=30; % 种群规模
Platform: | Size: 1498 | Author: wang65424773 | Hits:

[Documentsmatlab常用命令

Description: 有关命令行环境的一些操作: (1) clc 擦去一页命令窗口,光标回屏幕左上角 (2) clear 从工作空间清除所有变量 (3) clf 清除图形窗口内容-the command-line environment for the operation of : (a) liquidchromatographic order to remove a window screen cursor to the upper left corner (2) clear from the work space to eliminate all variables (3) removal of CLF graphical content window
Platform: | Size: 4096 | Author: 张焕焕 | Hits:

[Static controlaudioio

Description: 本期国外新书通报为武汉大学外国教材中心室1999年12月份入藏的原版新书共计314种。其中,本中心经费入藏生物科学新书46种,采用《中国图书馆图书分类法》(以下简称“ 中图法”)分类;图书馆经费入藏新书268种,采用《中国科学院图书馆图书分类法》(以下简称“科图法”)分类。新书的著录项目包括:分类著者号(即索书号)、顺序号、书名、作 者、出版社、出版年、页码等。新书按分类排列,配有书名中文译名(仅供参考),书后备有西文书名字母顺序索引。所录新书欢迎读者前来本室查阅。-briefing book for teaching foreign Wuhan University Center Room in December 1999 Collecting the original book Total 314 species. Among them, the Center for Biological Science Book Collecting 46, "Chinese Library Classification" (hereinafter referred to as "CLC") classification; Collecting books for the Library of 268 species, "the Chinese Academy of Sciences Library Classification" (hereinafter referred to as "Section Method ") classification. Description of the book include : Author classification (that is, Call), in descending order, the title, author, publisher, publishing, and other pages. Book arranged by classification, is equipped with the title Hansard (U.S.), reserve a book entitled Western alphabetical index. Recorded books invite readers t
Platform: | Size: 395264 | Author: 胡河宇 | Hits:

[matlabclc

Description: 用matalb程序来实现求一个连通图的最小生成树-matalb procedures used to achieve a graph for the minimum spanning tree
Platform: | Size: 2048 | Author: Selena | Hits:

[Othergonglvpumatlab

Description: 功率谱估计matlab防真程序 从介绍功率谱的估计原理入手,分析了经典谱估计和现代谱估计两类估计方法的原理、各自特点及在Matlab中的实现方法率谱估计 周期图法 AR参数法-power spectrum estimation procedures Matlab defense from introducing real power spectrum estimation principle start, Analysis of the spectral estimation classic and modern spectral estimation Estimation of two principles, and their respective characteristics in Matlab method of spectral estimation rate cycle CLC AR parameter method
Platform: | Size: 11264 | Author: lase | Hits:

[Windows DevelopASP

Description: 题名/责任者: ASP网络开发技术/汪晓平, 钟军编著 ISBN号: 7-115-11694-6 出版发行项: 北京-人民邮电出版社 2003 载体信息: 383页 26cm CNY39.00 (含光盘) 光盘1片 个人名称—等同责任者: 汪晓平 个人名称—等同责任者: 钟军 中图图书分类法类号: TP393.092-Title/responsibility: ASP web development technologies /汪晓平, Jun Zhong edited ISBN number: 7-115-11694-6 published items: Beijing- People s Posts and Telecommunications Publishing House, 2003 vector information: 383 26cm CNY39.00 (with CD-ROM) CD-ROM a personal name- the same as those responsible:汪晓平personal name- the same as those responsible for: Jun Zhong CLC Book No. category classification: TP393.092
Platform: | Size: 6946816 | Author: li | Hits:

[SCMclcok

Description: 基于STC单片机,电子钟设计,五个按键,LCD显示,-STC-based single-chip, electronic bell design, five buttons, LCD display,
Platform: | Size: 22528 | Author: 肯迪 | Hits:

[matlabmallat.m

Description: 小波谱分析mallat算法经典程序 clc clear %% 1.正弦波定义 f1=50 % 频率1 f2=100 % 频率2 -Mallat algorithm for spectral analysis of small classical procedures clc clear 1. Sine wave definition of f1 = 50 frequency of 1f2 = 100 frequency of 2
Platform: | Size: 3072 | Author: wudong | Hits:

[Special Effectsclc

Description: 不使用中值滤波函数,直接运用MATLAB编写中值滤波程序 -Non-use of median filtering function, the direct use of MATLAB procedures for the preparation of median filtering
Platform: | Size: 5120 | Author: wanmei | Hits:

[TreeViewLIBRARY

Description: 用treeview 控件实现中图分类号查询,管理。-TreeView control with CLC realize query, management.
Platform: | Size: 101376 | Author: 张涛 | Hits:

[Other2007122915522

Description: 摘要:介绍了集成温度传感器AD590,给出了AD590测量热力学温度、摄氏温度、两点温度差、多点最低温度、多点平均温度的具体电路,并以节能型温、湿度控制系统为例介绍了利用AD590测两点温差电路的应用。 关键词: AD590;集成温度传感器;温度差; 中图分类号:TP368 TP212.11文献标识码:A 文章编号::1006-883X(2003)03-0035-03 -Abstract: This paper presents an integrated temperature sensor AD590, gives the measurement of thermodynamic AD590 temperature, Celsius temperature, two temperature difference, the lowest multi-point temperature, multi-point average temperature of the specific circuit, and energy-efficient temperature and humidity control system as an example measured using two AD590 temperature circuit applications. Keywords: AD590 integrated temperature sensor temperature difference CLC number: TP368 TP212.11 Document code: A Article ID: :1006-883X (2003) 03-0035-03
Platform: | Size: 16384 | Author: 黄伟 | Hits:

[Linux-Unixeucalyptus-1.6.2

Description: 云计算平台eucalyptus源代码,其中我分析了集群控制器和关于存储方面(storage,CLC下的walrus,SC)的代码,让大家对该平台有个了解和提升-Cloud computing platform eucalyptus source code, which I analyzed the cluster controller and on the storage (storage, CLC under the walrus, SC) of the code, so that we have the platform to understand and improve
Platform: | Size: 2204672 | Author: 李楠 | Hits:

[VHDL-FPGA-Verilogtec-xp+基本指令和扩展指令

Description: 29条基本指令和clc jrns calr扩展指令真值表,适用于tec-xp+16位教学机,通过编译软件编译,写入match芯片(tec-xp+16 29basic clc jrns calr match chip)
Platform: | Size: 3072 | Author: 慧奇 | Hits:
« 12 3 4 5 6 »

CodeBus www.codebus.net