亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

n-to-default

  • program to solve a finite difference discretization of Helmholtz equation : (

    program to solve a finite difference discretization of Helmholtz equation : (d2/dx2)u + (d2/dy2)u - alpha u = f using Jacobi iterative method. COMMENTS: OpenMP version 3: 1 PR outside the iteration loop, 4 Barriers Directives are used in this code to achieve paralleism. All do loops are parallized with default static scheduling.

    標簽: discretization difference Helmholtz equation

    上傳時間: 2014-01-11

    上傳用戶:bruce5996

  • 生成Trick文件工具 1.Open command line 2.input tricktest Usage: TrickTest -f -o -i -f source mpeg2 fil

    生成Trick文件工具 1.Open command line 2.input tricktest Usage: TrickTest -f -o -i -f source mpeg2 file to trick -o trick output directory -i output file id -m max coding error, default 0 -b max bitrate for trick generate, default 0 mean no limit -s trick buffer block size, must be n*188 -l log file, default c:\tricktest.log example: tricktest -f 黑鷹行動.mpg -o c:\temp -i A -m 1000 -b 3750000 soure file: 黑鷹行動.mpg output directory: c:\temp filename: 000000A,000000A.ff,000000A.fr,000000A.vvx max coding error: 1000 trick generation speed: 3750000 bps a

    標簽: TrickTest tricktest command source

    上傳時間: 2014-01-23

    上傳用戶:水口鴻勝電器

  • This code outputs various NMEA strings to a com port. The code was originally used to test naviati

    This code outputs various NMEA strings to a com port. The code was originally used to test naviation programmes. First select the required com port and the required NMEA message string. There is a default starting position but this can be changed to suit just by typing in a new position. Click on the Start button the current position displayed will change according to the speed and heading selected and the selected NMEA string will be output to the com port and will reflect the current position as displayed. There is a text box which is normally not visible. If you change this to visible the relevant NMEA string can be displayed.

    標簽: code originally outputs naviati

    上傳時間: 2013-11-30

    上傳用戶:熊少鋒

  • This file is a function under matlab which allow to compute and plot fast fourier transform of a sig

    This file is a function under matlab which allow to compute and plot fast fourier transform of a signal. We can observe the effect of the signal parameter can be changed such as frequency and N points.

    標簽: transform function compute fourier

    上傳時間: 2017-06-27

    上傳用戶:米卡

  • SensorSimII is the framework of a simulator that I have been working on to study how future sensor n

    SensorSimII is the framework of a simulator that I have been working on to study how future sensor networks should operate. the simulator is written in a modular fashion so that it can be adapted to serve a number of needs. However, please remember that it is still a work in progress. This web page is here just to give a glimpse of the approach we ve taken with this simulator. Likewise this web page is simply preliminary information to attempt to answer some of the questions that researchers might have about this project.

    標簽: SensorSimII framework simulator working

    上傳時間: 2013-12-26

    上傳用戶:wsf950131

  • This source code is used with MAODV to simulate multicast wireless ad hoc network. Compatible with N

    This source code is used with MAODV to simulate multicast wireless ad hoc network. Compatible with NS2.26

    標簽: with Compatible multicast simulate

    上傳時間: 2014-01-21

    上傳用戶:sunjet

  • RSA ( Rivest Shamir Adleman )is crypthograph system that used to give a secret information and digit

    RSA ( Rivest Shamir Adleman )is crypthograph system that used to give a secret information and digital signature . Its security based on Integer Factorization Problem (IFP). RSA uses an asymetric key. RSA was created by Rivest, Shamir, and Adleman in 1977. Every user have a pair of key, public key and private key. Public key (e) . You may choose any number for e with these requirements, 1< e <Æ (n), where Æ (n)= (p-1) (q-1) ( p and q are first-rate), gcd (e,Æ (n))=1 (gcd= greatest common divisor). Private key (d). d=(1/e) mod(Æ (n)) Encyption (C) . C=Mª mod(n), a = e (public key), n=pq Descryption (D) . D=C° mod(n), o = d (private key

    標簽: crypthograph information Adleman Rivest

    上傳時間: 2017-09-01

    上傳用戶:chfanjiang

  • 利用棧的基本操作實現將任意一個十進制整數N轉化為R進制整數。

    #include <stdlib.h> #include<stdio.h> #include <malloc.h> #define stack_init_size 100 #define stackincrement 10 typedef struct sqstack { int *base; int *top; int stacksize; } sqstack; int StackInit(sqstack *s) { s->base=(int *)malloc(stack_init_size *sizeof(int)); if(!s->base) return 0; s->top=s->base; s->stacksize=stack_init_size; return 1; } int Push(sqstack *s,int e) { if(s->top-s->base>=s->stacksize) { s->base=(int *)realloc(s->base,(s->stacksize+stackincrement)*sizeof(int)); if(!s->base) return 0; s->top=s->base+s->stacksize; s->stacksize+=stackincrement; } *(s->top++)=e; return e; } int Pop(sqstack *s,int e) { if(s->top==s->base) return 0; e=*--s->top; return e; } int stackempty(sqstack *s) { if(s->top==s->base) { return 1; } else { return 0; } } int conversion(sqstack *s) { int n,e=0,flag=0; printf("輸入要轉化的十進制數:\n"); scanf("%d",&n); printf("要轉化為多少進制:\n"); scanf("%d",&flag); printf("將十進制數%d 轉化為%d 進制是:\n",n,flag); while(n) { Push(s,n%flag); n=n/flag; } while(!stackempty(s)) { e=Pop(s,e); switch(e) { case 10: printf("A"); break; case 11: printf("B"); break; case 12: printf("C"); break; case 13: printf("D"); break; case 14: printf("E"); break; case 15: printf("F"); break; default: printf("%d",e); } } printf("\n"); return 0; } int main() { sqstack s; StackInit(&s); conversion(&s); return 0;                        }

    標簽: 整數 基本操作 十進制 轉化 進制

    上傳時間: 2016-12-08

    上傳用戶:愛你198

  • N-path+Filtering

    his research aims at creating broadband tunable, fully integrated filters for the application of cognitive radio and signal classification receivers. The approach under study is the N-path filter technique which is capable of translating a baseband impedance to a reference frequency creating a tunable filter. The traditional N-path filter suffers from fundamental architectural limitations, namely : a trade-off between insertion loss and out-of-band rejection, reference clock feed- through, and jammer power handling limitations. In the first approach, the fundamental trade- off of the traditional N-path filter between insertion loss and out-of-band rejection is improved by a transmission line (T-line) N-path filter technique. 

    標簽: Filtering N-path

    上傳時間: 2020-05-31

    上傳用戶:shancjb

  • N系列射頻同軸連接器

    N系列射頻同軸連接器

    標簽: 射頻 同軸連接器

    上傳時間: 2013-06-29

    上傳用戶:eeworm

主站蜘蛛池模板: 泾川县| 梁山县| 田林县| 临清市| 平武县| 博客| 东平县| 永兴县| 临高县| 华阴市| 北海市| 通化市| 蒲城县| 紫云| 邓州市| 泽普县| 文登市| 德州市| 略阳县| 岢岚县| 商城县| 东安县| 文成县| 涟源市| 大连市| 阳江市| 县级市| 新丰县| 林甸县| 青阳县| 巴楚县| 醴陵市| 靖远县| 马关县| 万州区| 株洲市| 日土县| 门头沟区| 丹棱县| 泸定县| 乌兰浩特市|