代码搜索:corresponding
找到约 4,250 项符合「corresponding」的源代码
代码结果 4,250
www.eeworm.com/read/264458/6358199
pas yacclook.pas
{
Yacc lookahead computation. This implementation is based on the
lookahead set algorithm described in Aho/Sethi/Ullman, 1986,
Section 4.7.
Copyright (c) 1990-92 Albert Graef
www.eeworm.com/read/493456/6393561
m cplxcomp.m
function I = cplxcomp(p1,p2)
% I = cplxcomp(p1,p2)
% Compares two complex pairs which contain the same scalar elements
% but (possibly) at differrent indices. This routine should be
% used aft
www.eeworm.com/read/492612/6416452
m gaborfilter.m
%upload on 26-05-09. To contact author, Dr Wang Jun, please drop you
%message at wangjun5100@hotmail.com
function[h]=gaborfilter(U,V)
F=sqrt(U^2+V^2);
A=atan2(V,U);
a=sqrt(log(2)/2);
j=sq
www.eeworm.com/read/488463/6487349
m analytic.m
function z=analytic(x)
% z=analytic(x)
%ANALYTIC Returns the analytic signal corresponding to signal x.
%
z=hilbert(x);
www.eeworm.com/read/486345/6540249
m poly_mult.m
function ab = poly_mult (a, b, mod_pol)
%POLY_MULT Polynomial modulo multiplication in GF(2^8).
%
% AB = POLY_MULT (A, B, MOD_POL)
% performs a polynomial multiplication of A and B
% in t
www.eeworm.com/read/485544/6552660
m netinit.m
function net = netinit(net, prior)
%NETINIT Initialise the weights in a network.
%
% Description
%
% NET = NETINIT(NET, PRIOR) takes a network data structure NET and sets
% the weights and biases by s
www.eeworm.com/read/485544/6552705
m netunpak.m
function net = netunpak(net, w)
%NETUNPAK Separates weights vector into weight and bias matrices.
%
% Description
% NET = NETUNPAK(NET, W) takes an net network data structure NET and a
% weight vect
www.eeworm.com/read/485544/6552801
m mlpprior.m
function prior = mlpprior(nin, nhidden, nout, aw1, ab1, aw2, ab2)
%MLPPRIOR Create Gaussian prior for mlp.
%
% Description
% PRIOR = MLPPRIOR(NIN, NHIDDEN, NOUT, AW1, AB1, AW2, AB2) generates a
% dat
www.eeworm.com/read/485329/6558514
java tablepanel.java
/* TablePanel.java */
import java.awt.*;
import java.applet.*;
import java.io.*;
import java.util.*;
/**
* This class creates a panel with a table canvas and a vertical scrollbar
* to the east of
www.eeworm.com/read/476392/6759289
m stm.m
function stm=stm(A);
L = eig(A);
n=length(A);
I=eye(n);
o=ones(n);
H=zeros(n,n);
for i=1:n-1
G(:,i)=L.^i;
end
H=[o(:,1),G];
for i=1:n-1,
if L(i)==L(i+1),
for j=1:n,
H(i+1,j)