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

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

linear-phase

  • Batch version of the back-propagation algorithm. % Given a set of corresponding input-output pairs

    Batch version of the back-propagation algorithm. % Given a set of corresponding input-output pairs and an initial network % [W1,W2,critvec,iter]=batbp(NetDef,W1,W2,PHI,Y,trparms) trains the % network with backpropagation. % % The activation functions must be either linear or tanh. The network % architecture is defined by the matrix NetDef consisting of two % rows. The first row specifies the hidden layer while the second % specifies the output layer. %

    標簽: back-propagation corresponding input-output algorithm

    上傳時間: 2016-12-27

    上傳用戶:exxxds

  • % Train a two layer neural network with the Levenberg-Marquardt % method. % % If desired, it is p

    % Train a two layer neural network with the Levenberg-Marquardt % method. % % If desired, it is possible to use regularization by % weight decay. Also pruned (ie. not fully connected) networks can % be trained. % % Given a set of corresponding input-output pairs and an initial % network, % [W1,W2,critvec,iteration,lambda]=marq(NetDef,W1,W2,PHI,Y,trparms) % trains the network with the Levenberg-Marquardt method. % % The activation functions can be either linear or tanh. The % network architecture is defined by the matrix NetDef which % has two rows. The first row specifies the hidden layer and the % second row specifies the output layer.

    標簽: Levenberg-Marquardt desired network neural

    上傳時間: 2016-12-27

    上傳用戶:jcljkh

  • Train a two layer neural network with a recursive prediction error % algorithm ("recursive Gauss-Ne

    Train a two layer neural network with a recursive prediction error % algorithm ("recursive Gauss-Newton"). Also pruned (i.e., not fully % connected) networks can be trained. % % The activation functions can either be linear or tanh. The network % architecture is defined by the matrix NetDef , which has of two % rows. The first row specifies the hidden layer while the second % specifies the output layer.

    標簽: recursive prediction algorithm Gauss-Ne

    上傳時間: 2016-12-27

    上傳用戶:ljt101007

  • 這是LLE的原始算法

    這是LLE的原始算法,原文的參考文獻是:S.T.Roweis and L.K.Saul. Nonlinear dimensionality reduction by locally linear embedding. Science, 290, 2000.

    標簽: LLE 算法

    上傳時間: 2013-12-20

    上傳用戶:蟲蟲蟲蟲蟲蟲

  • 數值分析高斯——列主元消去法主程序 說明如下: % a----input,matrix of coefficient % b----input,right vector % sol----o

    數值分析高斯——列主元消去法主程序 說明如下: % a----input,matrix of coefficient % b----input,right vector % sol----output,returns the solution of linear equation

    標簽: input coefficient matrix vector

    上傳時間: 2017-01-01

    上傳用戶:dancnc

  • 計算全息close all clc clear A=zeros(64) A(15:20,20:40)=1 A(15:50,20:25)=1 A(45:50,20:40)=1 A(30:34,

    計算全息close all clc clear A=zeros(64) A(15:20,20:40)=1 A(15:50,20:25)=1 A(45:50,20:40)=1 A(30:34,20:35)=1 % ppp=exp(rand(64)*pi*2*i) A=A.*ppp % Author s email: zjliu2001@163.com figure imshow(abs(A),[]) Fa=fft2(fftshift(A)) Fs=fftshift(Fa) Am=abs(Fs) % amplitude Ph=angle(Fs) % phase s=11 % 這表示邊長嗎? cgh=zeros(64*s) th=max(max(abs(Fs)))

    標簽: 20 close clear zeros

    上傳時間: 2014-10-13

    上傳用戶:wweqas

  • 密碼學界牛人Victor Shoup用C++編寫數論類庫。 NTL is a high-performance, portable C++ library providing data struct

    密碼學界牛人Victor Shoup用C++編寫數論類庫。 NTL is a high-performance, portable C++ library providing data structures and algorithms for arbitrary length integers for vectors, matrices, and polynomials over the integers and over finite fields and for arbitrary precision floating point arithmetic. NTL provides high quality implementations of state-of-the-art algorithms for: * arbitrary length integer arithmetic and arbitrary precision floating point arithmetic * polynomial arithmetic over the integers and finite fields including basic arithmetic, polynomial factorization, irreducibility testing, computation of minimal polynomials, traces, norms, and more * lattice basis reduction, including very robust and fast implementations of Schnorr-Euchner, block Korkin-Zolotarev reduction, and the new Schnorr-Horner pruning heuristic for block Korkin-Zolotarev * basic linear algebra over the integers, finite fields, and arbitrary precision floating point numbers.

    標簽: high-performance providing portable library

    上傳時間: 2014-01-04

    上傳用戶:exxxds

  • SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems

    SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high performance machines. The library is written in C and is callable from either C or Fortran. The library routines will perform an LU decomposition with partial pivoting and triangular system solves through forward and back substitution. The LU factorization routines can handle non-square matrices but the triangular solves are performed only for square matrices. The matrix columns may be preordered (before factorization) either through library or user supplied routines. This preordering for sparsity is completely separate from the factorization. Working precision iterative refinement subroutines are provided for improved backward stability. Routines are also provided to equilibrate the system, estimate the condition number, calculate the relative backward error, and estimate error bounds for the refined solutions.

    標簽: nonsymmetric solution SuperLU general

    上傳時間: 2017-02-20

    上傳用戶:lepoke

  • cordic methods describe essentially the same algorithm that with suitably chosen inputs can be used

    cordic methods describe essentially the same algorithm that with suitably chosen inputs can be used to calculate a whole range of scientific functions including sin, cos, tan, arctan, arcsin, arccos, sinh, cosh, tanh, arctanh, log, exp, square root and even multiply and divide. the method dates back to volder [1959], and due to its versatility and compactness, it made possible the microcoding of the hp35 pocket scientific calculator in 1972. here is some code to illustrate the techniques. ive split the methods into three parts linear, circular and hyperbolic. in the hp35 microcode these would be unified into one function (for space reasons). because the linear mode can perform multiply and divide, you only need add/subtract and shift to complete the implementation. you can select in the code whether to do the multiples and divides also by cordic means. other multiplies and divides are all powers of 2 (these dont count). to eliminate these too, would involve ieee hackery.

    標簽: essentially algorithm describe suitably

    上傳時間: 2017-03-02

    上傳用戶:litianchu

  • This is GPS Acquisition..by Matlab, this file performs cold start acquisition on the collected "data

    This is GPS Acquisition..by Matlab, this file performs cold start acquisition on the collected "data". It searches for GPS signals of all satellites, which are listed in field "acqSatelliteList" in the settings structure. Function saves code phase and frequency of the detected signals in the "acqResults" structure.

    標簽: Acquisition acquisition collected performs

    上傳時間: 2013-12-28

    上傳用戶:wxhwjf

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产日韩欧美一二三区| 久久精品国产欧美激情| 久久久精品网| 午夜国产精品影院在线观看| 国产午夜一区二区三区| 欧美日韩成人网| 开元免费观看欧美电视剧网站| 亚洲手机视频| 亚洲一区二区三区高清 | 国产精品99久久久久久宅男| 国产在线成人| av成人福利| 亚洲综合视频1区| 午夜欧美电影在线观看| 亚洲国产日韩欧美一区二区三区| 欧美激情精品久久久六区热门| 老司机精品福利视频| 久久久久一区二区三区| 欧美国产乱视频| 国产精品稀缺呦系列在线| 国产精品av免费在线观看| 国产一级久久| 亚洲欧美日韩专区| 欧美日韩精品一区视频| 国产综合婷婷| 亚洲欧美在线观看| 老司机精品视频一区二区三区| 99这里只有精品| 欧美在线日韩| 欧美日韩在线播放| 国产精一区二区三区| 国产在线成人| 午夜电影亚洲| 欧美成人在线网站| 欧美日韩国产免费| 欧美片在线播放| 亚洲电影下载| 玖玖综合伊人| 在线电影院国产精品| 在线成人激情| 午夜免费久久久久| 女同一区二区| 狠狠色丁香婷婷综合影院| 一区二区三区四区蜜桃| 久久精品国产一区二区电影| 国产精品久久久久久久午夜| 亚洲电影欧美电影有声小说| 亚洲视频免费| 国产欧美一区二区三区视频| 亚洲高清123| 久久久另类综合| 国产精品免费一区二区三区在线观看| 1000精品久久久久久久久| 久久精品99国产精品酒店日本| 欧美日韩高清区| 最新国产乱人伦偷精品免费网站| 欧美日本成人| 久久久久久一区| 亚洲精品一区中文| 国产欧美日韩精品丝袜高跟鞋| 在线观看日韩一区| 欧美肉体xxxx裸体137大胆| 亚洲午夜电影网| 黄色日韩网站视频| 欧美日韩在线视频一区二区| 午夜一区二区三区不卡视频| 在线成人亚洲| 国产欧美日韩中文字幕在线| 欧美福利一区| 久久精品国产免费观看| 9人人澡人人爽人人精品| 国内伊人久久久久久网站视频 | 亚洲国产美女精品久久久久∴| 欧美日韩国产免费观看| 亚洲一区二区三区视频播放| 国产中文一区二区三区| 欧美色另类天堂2015| 另类专区欧美制服同性| 香蕉成人啪国产精品视频综合网| 亚洲国产美女| 136国产福利精品导航网址| 国产精品视频最多的网站| 欧美精品日韩一本| 欧美成人一区在线| 久久精品日韩欧美| 欧美亚洲综合在线| 亚洲欧美日韩爽爽影院| 一本综合久久| 一区二区欧美在线观看| 亚洲免费久久| 亚洲九九九在线观看| 亚洲国产成人久久综合| 黄色成人片子| 黄色日韩网站| 国内精品视频666| 国产在线精品自拍| 国模一区二区三区| 黄色精品免费| **性色生活片久久毛片| 在线成人激情| 亚洲韩日在线| 亚洲欧洲另类| 亚洲人屁股眼子交8| 亚洲国产三级网| 亚洲精品乱码久久久久久按摩观| 亚洲第一在线视频| 99国产精品久久久久久久| 艳妇臀荡乳欲伦亚洲一区| 日韩亚洲国产欧美| 一区二区三区**美女毛片| 亚洲图片欧洲图片av| 亚洲一区二区视频在线观看| 亚洲尤物影院| 久久精品视频在线免费观看| 久久综合狠狠综合久久综青草| 久久夜色精品| 欧美sm视频| 欧美日韩在线三区| 在线综合欧美| 欧美国产精品一区| 国产一区二区中文字幕免费看| 国产欧美日韩精品一区| 国产亚洲人成网站在线观看| 好吊成人免视频| 亚洲日本va午夜在线影院| 亚洲天天影视| 久久av免费一区| 欧美日韩亚洲系列| 国产亚洲综合在线| 亚洲精品一区二区三区四区高清| 亚洲网址在线| 久久婷婷综合激情| 国产精品盗摄一区二区三区| 国语精品中文字幕| 日韩亚洲在线观看| 欧美在线视频a| 欧美电影免费观看网站| 国产精品色网| 亚洲人成网站精品片在线观看| 亚洲自拍偷拍福利| 免费亚洲一区二区| 国产视频一区在线观看一区免费 | 六月天综合网| 欧美图区在线视频| 极品av少妇一区二区| 亚洲一区日韩| 欧美肥婆在线| 国产午夜精品一区理论片飘花| 亚洲精品国产视频| 久久噜噜噜精品国产亚洲综合| 欧美日韩成人激情| 合欧美一区二区三区| 亚洲一区二区三区精品在线观看| 麻豆精品精华液| 国产午夜久久久久| 亚洲一区在线播放| 欧美黄色日本| 黄色av一区| 久久久人成影片一区二区三区| 国产精品久久久亚洲一区 | 欧美高清视频在线观看| 国产区二精品视| 亚洲一区在线视频| 国产精品va在线播放| 日韩视频三区| 欧美日韩激情小视频| 亚洲精品久久久久久久久| 免费日本视频一区| 亚洲高清免费视频| 欧美刺激性大交免费视频| 在线观看成人av电影| 久久久久久黄| 国产午夜亚洲精品羞羞网站| 亚洲欧美另类国产| 国产精品乱看| 亚洲欧美日韩国产一区二区| 国产精品久久一卡二卡| 亚洲欧美中日韩| 国产有码一区二区| 猛男gaygay欧美视频| 91久久在线播放| 欧美日韩国产一级| 亚洲午夜精品网| 国产精品网站在线| 久久精品91| 亚洲欧洲日韩综合二区| 欧美成人有码| 亚洲毛片网站| 欧美性久久久| 亚洲欧美激情在线视频| 国产区在线观看成人精品| 久久久另类综合| 亚洲三级电影在线观看| 欧美日韩大片| 亚洲一区二区欧美日韩| 国产视频一区三区| 欧美激情一二三区| 午夜精品在线视频| 亚洲第一区在线| 国产精品国产三级国产普通话99|