搜索结果
找到约 459 项符合
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
...
人工智能/神经网络 % 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,
% ...
matlab例程 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 , w ...
嵌入式/单片机编程 这是LLE的原始算法
这是LLE的原始算法,原文的参考文献是:S.T.Roweis and L.K.Saul. Nonlinear dimensionality reduction by locally linear embedding. Science,
290, 2000.
数学计算 数值分析高斯——列主元消去法主程序 说明如下: % 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
书籍源码 计算全息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 ...
数据结构 密码学界牛人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.
N ...
数学计算 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 ...
数学计算 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 ba ...
GPS编程 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 "acq ...