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
Video object matching across multiple independent views using local descriptors and adaptive learning文章描述了多攝像機系統下的目標檢測與跟蹤,和自學習方法。很有參考價值。
標簽: independent descriptors matching adaptive
上傳時間: 2014-01-18
上傳用戶:chongcongying
Error probability performance for W-CDMA systems with multiple transmit and receive antennas in correlated Nakagami fading channels
標簽: probability performance antennas multiple
上傳時間: 2014-01-08
上傳用戶:WMC_geophy
verilog code 16-bit carry look-ahead adder output [15:0] sum // 相加總和 output carryout // 進位 input [15:0] A_in // 輸入A input [15:0] B_in // 輸入B input carryin // 第一級進位 C0
標簽: output look-ahead carryout verilog
上傳時間: 2014-12-06
上傳用戶:ls530720646
verilog code array_multiplier output [7:0] product input [3:0] wire_x input [3:0] wire_y
標簽: input array_multiplier verilog product
上傳時間: 2014-01-04
上傳用戶:wxhwjf
verilog code radix-2 SRT divider input [7:0]Dividend input [3:0]Divisor output [4:0]Quotient output [8:0]Remainder
標簽: input Dividend Quotient verilog
上傳時間: 2014-11-27
上傳用戶:三人用菜
Using ispMACH 4000 Devices in Multiple JTAG Voltage Environments ™
標簽: Environments Multiple Devices ispMACH
上傳時間: 2013-11-25
上傳用戶:frank1234
輸入、輸出功能,檢驗輸入的數是否為數字功能,ASCII碼與二進制數的的相互轉化功能,兩數相乘功能,因此整個程序定義了兩個宏INPUT和MULTIPLE,宏INPUT實現了輸入、檢驗和ASCII碼與二進制的相互轉換功能,MULTIPLE實現了兩數相乘功能,實現輸出功能的是子程序OUTPUT,由于在輸入的過程中多次用到了回車換行,因此定義了一個回車換行子程序CRLF。
上傳時間: 2017-02-08
上傳用戶:Ants
介紹NRF24L01的多通道(Multiple Pipes),其中文件nrf24l01.c實現此射頻芯片在多通道下的通信,多發單收,同樣提供了發、發的HEX文件便于實驗。
上傳時間: 2014-01-16
上傳用戶:小碼農lz
Input : A set S of planar points Output : A convex hull for S Step 1: If S contains no more than five points, use exhaustive searching to find the convex hull and return. Step 2: Find a median line perpendicular to the X-axis which divides S into SL and SR SL lies to the left of SR . Step 3: Recursively construct convex hulls for SL and SR. Denote these convex hulls by Hull(SL) and Hull(SR) respectively. Step 4: Apply the merging procedure to merge Hull(SL) and Hull(SR) together to form a convex hull. Time complexity: T(n) = 2T(n/2) + O(n) = O(n log n)
標簽: contains Output convex planar
上傳時間: 2017-02-19
上傳用戶:wyc199288