虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

AFTER

  • These Release Notes describe the functionality of the AudioCodes’ TrunkPack Series Boards and Digit

    These Release Notes describe the functionality of the AudioCodes’ TrunkPack Series Boards and Digital Media Gateways supported by Software Release 4.8. Information contained in this document is believed to be accurate and reliable at the time of printing. However, due to ongoing product improvements and revisions, AudioCodes cannot guarantee the accuracy of printed material AFTER the Date Published nor can it accept responsibility for errors or omissions.

    标签: functionality AudioCodes TrunkPack the

    上传时间: 2017-08-08

    上传用户:wuyuying

  • Main program running when workpiece is ready on deferent belt(deferent_ready=ture). * Call Squ

    Main program running when workpiece is ready on deferent belt(deferent_ready=ture). * Call Square_Wave subroutine to generate 0.5ms square wave on P1.2 to drive * electromotor,then drive deferent belt step forward. When it steps to the measure * zone, it stops to be measured. Then call A_D subroutine to transform analog * signals to digital signals , AFTER then call serial subroutine to transfer * digital signals to PC. Call square wave subroutine to drive deferent belt step to * original position waitting for defere ready flag to run the next circle.

    标签: deferent_ready workpiece deferent program

    上传时间: 2017-08-31

    上传用户:baiom

  • Like many of my colleagues in this industry, I learned Windows programming from Charles Petzold s Pr

    Like many of my colleagues in this industry, I learned Windows programming from Charles Petzold s Programming Windows—a classic programming text that is the bible to an entire generation of Windows programmers. When I set out to become an MFC programmer in 1994, I went shopping for an MFC equivalent to Programming Windows. AFTER searching in vain for such a book and spending a year learning MFC the old-fashioned way, I decided to write one myself. It s the book you hold in your hands. And it s the book I would like to have had when I was learning to program Windows the MFC way.

    标签: programming colleagues industry Charles

    上传时间: 2014-01-10

    上传用户:曹云鹏

  • The running time of quicksort can be improved in practice by taking advantage of the fast running t

    The running time of quicksort can be improved in practice by taking advantage of the fast running time of insertion sort when its input is “nearly” sorted. When quicksort is called on a subarray with fewer than k elements, let it simply return without sorting the subarray. AFTER the top-level call to quicksort returns, run insertion sort on the entire array to finish the sorting process.

    标签: running advantage quicksort improved

    上传时间: 2013-12-01

    上传用户:梧桐

  • f you have not registered, Please [regist first].You should upload at least five sourcecodes/documen

    f you have not registered, Please [regist first].You should upload at least five sourcecodes/documents. (upload 5 files, you can download 200 files). Webmaster will activate your member account AFTER checking your files. If you do not want to upload source code, you can join the [VIP member] to

    标签: sourcecodes registered documen Please

    上传时间: 2017-09-13

    上传用户:ljmwh2000

  • f you have not registered, Please [regist first].You should upload at least five sourcecodes/documen

    f you have not registered, Please [regist first].You should upload at least five sourcecodes/documents. (upload 5 files, you can download 200 files). Webmaster will activate your member account AFTER checking your files. If you do not want to upload source code, you can join the [VIP member] to

    标签: sourcecodes registered documen Please

    上传时间: 2014-01-16

    上传用户:fandeshun

  • svd 算法代码 This directory contains instrumented SVDPACKC Version 1.0 (ANSI-C) programs for compiling

    svd 算法代码 This directory contains instrumented SVDPACKC Version 1.0 (ANSI-C) programs for compiling within the "svdrun" script. The "svdsum" script can be run AFTER all output files of the form <dataset>.outN, where N=1,2,... have been produced by svdrun. more details please read the file readme!

    标签: instrumented directory compiling SVDPACKC

    上传时间: 2017-09-24

    上传用户:manking0408

  • 多普勒频移

    有多径信道、多普勒频移,瑞利、RICE(莱斯)信道等仿真,QPSK调制和解调等,交织编码。程序经过本人测试,绝对可用,并附上本人测试说明和仿真图像结果-I collected information on 2, how-path channel, Doppler frequency shift, Rayleigh, RICE (Rice) channel, such as simulation, QPSK modulation and demodulation, etc., Interleaved Coded. AFTER I tested the procedure is absolutely available, along with my test images and simulation results indicate.

    标签: 移动通信 多普勒频移

    上传时间: 2015-06-16

    上传用户:whtiger

  • c语言算法排序

    1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.) #include<stdio.h> #include<stdlib.h> void merge(int arr[],int low,int mid,int high){      int i,k;      int *tmp=(int*)malloc((high-low+1)*sizeof(int));      int left_low=low;      int left_high=mid;      int right_low=mid+1;      int right_high=high;      for(k=0;left_low<=left_high&&right_low<=right_high;k++)      {      if(arr[left_low]<=arr[right_low]){                                        tmp[k]=arr[left_low++];                                        }      else{           tmp[k]=arr[right_low++];           } }             if(left_low<=left_high){                              for(i=left_low;i<=left_high;i++){                                                               tmp[k++]=arr[i];                                                               }                              }       if(right_low<=right_high){                              for(i=right_low;i<=right_high;i++)                                                                tmp[k++]=arr[i];                                                        }                              for(i=0;i<high-low+1;i++)                                                       arr[low+i]=tmp[i];       } void merge_sort(int a[],int p,int r){      int q;      if(p<r){              q=(p+r)/2;              merge_sort(a,p,q);              merge_sort(a,q+1,r);              merge(a,p,q,r);              }      } int main(){     int a[8]={3,5,8,6,4,1,1};     int i,j;     int x=10;     merge_sort(a,0,6);     printf("AFTER Merging-Sort:\n");     for(i=0;i<7;i++){                      printf("%d",a[i]);                      }     printf("\n");     i=0;j=6;     do{                                    if(a[i]+a[j]==x){                                  printf("exist");                                  break;                                  }                  if(a[i]+a[j]>x)                                 j--;                  if(a[i]+a[j]<x)                                 i++;                       }while(i<=j);     if(i>j)              printf("not exist");     system("pause");     return 0;     }

    标签: c语言 算法 排序

    上传时间: 2017-04-01

    上传用户:糖儿水嘻嘻

  • 锂硫电池隔膜

    Lithium–sulfur batteries are a promising energy-storage technology due to their relatively low cost and high theoretical energy density. However, one of their major technical problems is the shuttling of soluble polysulfides between electrodes, resulting in rapid capacity fading. Here, we present a metal–organic framework (MOF)-based battery separator to mitigate the shuttling problem. We show that the MOF-based separator acts as an ionic sieve in lithium–sulfur batteries, which selectively sieves Li+ ions while e ciently suppressing undesired polysulfides migrating to the anode side. When a sulfur-containing mesoporous carbon material (approximately 70 wt% sulfur content) is used as a cathode composite without elaborate synthesis or surface modification, a lithium–sulfur battery with a MOF-based separator exhibits a low capacity decay rate (0.019% per cycle over 1,500 cycles). Moreover, there is almost no capacity fading AFTER the initial 100 cycles. Our approach demonstrates the potential for MOF-based materials as separators for energy-storage applications.

    标签: 锂硫电池 隔膜

    上传时间: 2017-11-23

    上传用户:653357637