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

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

健康監(jiān)(jiān)護(hù)

  • eda j i a o c h e n g

    eda j i a o c h e n g

    標簽: eda

    上傳時間: 2013-12-26

    上傳用戶:lyy1234

  • #include<stdio.h> void main(void) {int n,k,derivata,a[10],i printf("n=") scanf(" d",&n)

    #include<stdio.h> void main(void) {int n,k,derivata,a[10],i printf("n=") scanf(" d",&n) for(i=0 i<=n i++) { printf("a[ d]=",i) scanf(" d",&a[i]) } printf("k=") scanf(" d",&k) for(derivata=1 derivata<=k derivata++) { for(i=0 i<=n i++) a[i]=a[i]*(n-i) n-- for(i=0 i<=n i++) printf(" d ",a[i]) printf("\n") }}

    標簽: void derivata include printf

    上傳時間: 2017-09-17

    上傳用戶:duoshen1989

  • 基于N溝道MOS管H橋驅動電路設計與制作

    本文結合飛思卡爾智能車比賽,基于N溝道MOS管設計H橋電機驅動電路,給出一種利用PWM脈寬調制的方式對直流電機進行速度調控。給出用于驅動MOS管的電壓泵設計電路以及PCB板制作需要注意的相關問題。

    標簽: mos管 驅動電路

    上傳時間: 2022-05-03

    上傳用戶:bluedrops

  • H.264 source codes

    ·詳細說明:h.264 source codes , the x264 is the most effience t e. and the codes are the newst codes . you c a n compile ti using VC 文件列表:   x264   ....\AUTHORS   ....\build   ....\

    標簽: nbsp source codes 264

    上傳時間: 2013-07-31

    上傳用戶:zhang97080564

  • Hopfield 網——擅長于聯(lián)想記憶與解迷路 實現(xiàn)H網聯(lián)想記憶的關鍵

    Hopfield 網——擅長于聯(lián)想記憶與解迷路 實現(xiàn)H網聯(lián)想記憶的關鍵,是使被記憶的模式樣本對應網絡能量函數(shù)的極小值。 設有M個N維記憶模式,通過對網絡N個神經元之間連接權 wij 和N個輸出閾值θj的設計,使得: 這M個記憶模式所對應的網絡狀態(tài)正好是網絡能量函數(shù)的M個極小值。 比較困難,目前還沒有一個適應任意形式的記憶模式的有效、通用的設計方法。 H網的算法 1)學習模式——決定權重 想要記憶的模式,用-1和1的2值表示 模式:-1,-1,1,-1,1,1,... 一般表示: 則任意兩個神經元j、i間的權重: wij=∑ap(i)ap(j),p=1…p; P:模式的總數(shù) ap(s):第p個模式的第s個要素(-1或1) wij:第j個神經元與第i個神經元間的權重 i = j時,wij=0,即各神經元的輸出不直接返回自身。 2)想起模式: 神經元輸出值的初始化 想起時,一般是未知的輸入。設xi(0)為未知模式的第i個要素(-1或1) 將xi(0)作為相對應的神經元的初始值,其中,0意味t=0。 反復部分:對各神經元,計算: xi (t+1) = f (∑wijxj(t)-θi), j=1…n, j≠i n—神經元總數(shù) f()--Sgn() θi—神經元i發(fā)火閾值 反復進行,直到各個神經元的輸出不再變化。

    標簽: Hopfield 聯(lián)想

    上傳時間: 2015-03-16

    上傳用戶:JasonC

  • C++完美演繹 經典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開C語言的內建函數(shù)指令 */ #define PI 3.141

    C++完美演繹 經典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開C語言的內建函數(shù)指令 */ #define PI 3.1415926 /* 宏常量,在稍后章節(jié)再詳解 */ #define circle(radius) (PI*radius*radius) /* 宏函數(shù),圓的面積 */ /* 將比較數(shù)值大小的函數(shù)寫在自編include文件內 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的結果:%d %d %d\n", a, b, c) } 程序執(zhí)行結果: 由小至大排序之后的結果:1 2 3 可將內建函數(shù)的include文件展開在自編的include文件中 圓圈的面積是=201.0619264

    標簽: my_Include include define 3.141

    上傳時間: 2014-01-17

    上傳用戶:epson850

  • 現(xiàn)有一個信號:x(n)=1+cos(π*n/4)+ cos(2*π*n/3)設計及各種數(shù)字濾波器以達下列目的: 低通濾波器

    現(xiàn)有一個信號:x(n)=1+cos(π*n/4)+ cos(2*π*n/3)設計及各種數(shù)字濾波器以達下列目的: 低通濾波器,濾除cos(2*π*n/3) 的成分,即想保留的成分為1+cos(π*n/4) 高通濾波器,濾除1+cos(π*n/4) 的成分,即想保留的成分為cos(2*π*n/3) 帶通濾波器,濾除1+cos(2*π*n/3) 的成分,即想保留的成分為cos(π*n/4) 帶阻濾波器,濾除cos(π*n/4) 的成分,即想保留的成分為1+cos(2*π*n/3) 1. 用MATLAB命令butterord求除濾波器的階數(shù),用命令butter設計各濾波器;畫出濾波器幅度和相頻相應 取各濾波器的系統(tǒng)函數(shù)H(z)。

    標簽: cos 信號 低通濾波器 數(shù)字濾波器

    上傳時間: 2013-12-28

    上傳用戶:daoxiang126

  • #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #defin

    #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5

    標簽: include define malloc string

    上傳時間: 2015-05-22

    上傳用戶:lwwhust

  • #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #defin

    #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5

    標簽: include define malloc string

    上傳時間: 2015-05-22

    上傳用戶:cc1915

  • #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #defin

    #include "stdio.h" #include "math.h" #include "malloc.h" #include "string.h" #define m 6 #define n 29 #define p 0.5

    標簽: include define malloc string

    上傳時間: 2014-01-03

    上傳用戶:JIUSHICHEN

主站蜘蛛池模板: 随州市| 沙雅县| 思茅市| 长治县| 绥德县| 三都| 吉首市| 长乐市| 时尚| 观塘区| 葫芦岛市| 讷河市| 阿拉尔市| 平果县| 黑山县| 昌图县| 安达市| 哈尔滨市| 栾川县| 霸州市| 浑源县| 宝丰县| 温州市| 搜索| 资兴市| 高台县| 砚山县| 大悟县| 太仆寺旗| 绵阳市| 武陟县| 宾川县| 抚州市| 自贡市| 平果县| 长垣县| 新沂市| 八宿县| 桑植县| 凤凰县| 大埔区|