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

蟲蟲首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

Double-density

  • ddtool,實(shí)現(xiàn)one class classification.包括gaussian 模型

    ddtool,實(shí)現(xiàn)one class classification.包括gaussian 模型, gaussian 混合模型,Parzen density,knn,kmean,kcenter等方法

    標(biāo)簽: classification gaussian ddtool class

    上傳時(shí)間: 2017-02-04

    上傳用戶:無(wú)聊來(lái)刷下

  • 函數(shù)插值計(jì)算 分別輸入已知節(jié)點(diǎn)的x,y值

    函數(shù)插值計(jì)算 分別輸入已知節(jié)點(diǎn)的x,y值,待計(jì)算的節(jié)點(diǎn)的x值,以及顯示結(jié)果的文本框。利用文本框和按鈕上的事件觸發(fā)一系列處理方法,包括把文本框里的字符串解析成double類型存放在數(shù)組中,以及利用lagrange插值公式計(jì)算出結(jié)果并填寫在結(jié)果文本框中。

    標(biāo)簽: 函數(shù) 插值 計(jì)算

    上傳時(shí)間: 2017-04-29

    上傳用戶:zm7516678

  • This thesis is devoted to several efficient VLSI architecture design issues in errorcorrecting codi

    This thesis is devoted to several efficient VLSI architecture design issues in errorcorrecting coding, including finite field arithmetic, (Generalized) Low-Density Parity- Check (LDPC) codes, and Reed-Solomon codes.

    標(biāo)簽: errorcorrecting architecture efficient devoted

    上傳時(shí)間: 2017-05-08

    上傳用戶:康郎

  • Generate Possion Dis. step1:Generate a random number between [0,1] step2:Let u=F(x)=1-[(1/

    Generate Possion Dis. step1:Generate a random number between [0,1] step2:Let u=F(x)=1-[(1/e)x] step3:Slove x=1/F(u) step4:Repeat Step1~Step3 by using different u,you can get x1,x2,x3,...,xn step5:If the first packet was generated at time [0], than the second packet will be generated at time [0+x1],The third packet will be generated at time [0+x1+x2], and so on …. Random-number generation 1.static method random from class Math -Returns doubles in the range 0.0 <= x < 1.0 2.class Random from package java.util -Can produce pseudorandom boolean, byte, float, double, int, long and Gaussian values -Is seeded with the current time of day to generate different sequences of numbers each time the program executes

    標(biāo)簽: Generate Possion between random

    上傳時(shí)間: 2017-05-25

    上傳用戶:bibirnovis

  • DEV C++ 寫的一個(gè)矩陣類

    DEV C++ 寫的一個(gè)矩陣類,用列主元消去法求模的。類的構(gòu)造函數(shù)接收矩陣的行列值或者是一個(gè)vector<vector<double> >類型的變量。沒(méi)有用模板,數(shù)據(jù)類型是double.

    標(biāo)簽: DEV 矩陣

    上傳時(shí)間: 2017-06-14

    上傳用戶:lht618

  • BP神經(jīng)網(wǎng)絡(luò)程序,C語(yǔ)言源代碼 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "ma

    BP神經(jīng)網(wǎng)絡(luò)程序,C語(yǔ)言源代碼 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "math.h" #include "stdio.h" #include "time.h" #include "fstream.h" #define N 120 //學(xué)習(xí)樣本個(gè)數(shù) #define IN 3 //輸入層神經(jīng)元數(shù)目 #define HN 2 //隱層神經(jīng)元數(shù)目 #define ON 2 //輸出層神經(jīng)元數(shù)目 #define Z 20000 //舊權(quán)值保存-》每次study的權(quán)值都保存下來(lái) double P[IN] //單個(gè)樣本輸入數(shù)據(jù) double T[ON] //單個(gè)樣本教師數(shù)據(jù) double U11[IN][HN] //輸入層至第一隱層權(quán)值 double V[HN][ON] //隱層至輸出層權(quán)值 double X1[HN] //第一隱層的輸入 double Y[ON] //輸出層的輸入 double H1[HN] //第一隱層的輸出 double O[ON] //輸出層的輸出 double YU_HN1[HN] //第一隱層的閾值 double YU_ON[ON] //輸出層的閾值 double err_m[N] //第m個(gè)樣本的總誤差 double a //學(xué)習(xí)效率 double alpha //動(dòng)量因子

    標(biāo)簽: include iostream iomanip stdlib

    上傳時(shí)間: 2017-06-15

    上傳用戶:xinzhch

  • 將一個(gè)數(shù)進(jìn)行階乘結(jié)果會(huì)是一個(gè)很大的數(shù)

    將一個(gè)數(shù)進(jìn)行階乘結(jié)果會(huì)是一個(gè)很大的數(shù),在c語(yǔ)言里double型也最大只能存一個(gè)兩位數(shù)的整數(shù)的階乘。本算法是對(duì)大數(shù)進(jìn)行階乘計(jì)算。

    標(biāo)簽:

    上傳時(shí)間: 2013-12-15

    上傳用戶:ggwz258

  • -- Hamming Decoder -- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder a

    -- Hamming Decoder -- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder above) and performs single error correction and double error detection. -- download from: www.pld.com.cn & www.fpga.com.cn LIBRARY ieee USE ieee.std_logic_1164.ALL ENTITY hamdec IS PORT(hamin : IN BIT_VECTOR(0 TO 7) --d0 d1 d2 d3 p0 p1 p2 p4 dataout : OUT BIT_VECTOR(0 TO 3) --d0 d1 d2 d3 sec, ded, ne : OUT BIT) --diagnostic outputs END hamdec ARCHITECTURE ver1 OF hamdec IS BEGIN

    標(biāo)簽: Hamming produced Decoder decoder

    上傳時(shí)間: 2017-07-15

    上傳用戶:520

  • hcon是工作在Linux控制臺(tái)下的高效雙字節(jié)中/日/韓(CJK)虛擬終端

    hcon是工作在Linux控制臺(tái)下的高效雙字節(jié)中/日/韓(CJK)虛擬終端,就像DOS環(huán)境中的UCDOS一樣,為控制臺(tái)(console)環(huán)境提供完整的雙字節(jié)語(yǔ)言環(huán)境。-zhcon work in the Linux console is under the efficient double-byte Chinese / Japanese / Korean (CJK) virtual terminal, just like DOS environment UCDOS same for console (console) environment to provide a complete double-byte language environments.

    標(biāo)簽: Linux hcon CJK 控制臺(tái)

    上傳時(shí)間: 2013-12-26

    上傳用戶:wsf950131

  • 購(gòu)物車系統(tǒng)中的用戶類

    購(gòu)物車系統(tǒng)中的用戶類,private Integer id private Product product private String shopname private Double shopprice

    標(biāo)簽: 用戶

    上傳時(shí)間: 2017-08-03

    上傳用戶:從此走出陰霾

主站蜘蛛池模板: 余庆县| 嘉义市| 体育| 鄂伦春自治旗| 马山县| 福贡县| 吐鲁番市| 连云港市| 罗城| 伊川县| 阿合奇县| 泸西县| 忻城县| 葵青区| 左贡县| 都昌县| 扶绥县| 大姚县| 巴东县| 项城市| 固阳县| 安新县| 浦县| 卢龙县| 安岳县| 睢宁县| 枣强县| 云霄县| 社会| 邵阳县| 阳城县| 富顺县| 内乡县| 昌乐县| 崇仁县| 太原市| 滕州市| 万源市| 翼城县| 台湾省| 定南县|