代码搜索:recursion
找到约 958 项符合「recursion」的源代码
代码结果 958
www.eeworm.com/read/433114/8545643
m levinson4toeplitz.m
function x=levinson4toeplitz(ac,rhs)
% Solve the linear system of equations Tx = r using Levinson's recursion;
% T is the Toeplitz matrix
% ( ac(1) ac(2) ac(3) ... )
%
www.eeworm.com/read/385314/8809629
m spiking.m
function [f,o] = spiking(d,NF,mu);
%SPIKING: Spiking deconvolution using Levinson's recursion
%
% [f,o] = spiking(d,NF,mu)
%
% IN d: data (a column trace)
% NF: lenght of the spiking
www.eeworm.com/read/384426/8870102
m movepointdraw.m
function movePointDraw(obj,eventData,ud)
% This separate function was made because of recursion limits in MATLAB.
figure(ud.figwin);
[rows,cols] = size(ud.imagedata.data);
currentPoint = get(gca,'
www.eeworm.com/read/371706/9540987
m spiking.m
function [f,o] = spiking(d,NF,mu);
%SPIKING: Spiking deconvolution using Levinson's recursion
%
% [f,o] = spiking(d,NF,mu)
%
% IN d: data (a column trace)
% NF: lenght of the spiking
www.eeworm.com/read/361768/10036619
m garchcore.m
function h=garchcore(data,parameters,stdEstimate,p,q,m,T);
% PURPOSE:
% Forward recursion to construct h's
%
% USAGE:
% h=garchcore(data,parameters,stdEstimate,p,q,m,T);
%
% INPUTS:
www.eeworm.com/read/160819/10495400
cpp fibtest.cpp
#include
using namespace std;
#include "ctimer.h"
#include "prompt.h"
// Illustrates "bad" recursion for computing Fibonacci numbers
const int FIB_LIMIT = 20; // largest fib #
www.eeworm.com/read/160819/10495665
cpp subdir.cpp
#include
#include
#include
using namespace std;
#include "directory.h"
#include "prompt.h"
// print all entries in a directory (uses recursion)
void Tab(int count)
//
www.eeworm.com/read/160819/10496039
cpp digits3.cpp
#include
using namespace std;
#include "prompt.h"
// recursion: print English form of each digit
// in an integer: 123 -> "one two three"
void PrintDigit(int num)
// precondition: 0
www.eeworm.com/read/449504/7502742
m garchcore.m
function h=garchcore(data,parameters,stdEstimate,p,q,m,T);
% PURPOSE:
% Forward recursion to construct h's
%
% USAGE:
% h=garchcore(data,parameters,stdEstimate,p,q,m,T);
%
% INPUTS:
www.eeworm.com/read/198546/7928970
m garchcore.m
function h=garchcore(data,parameters,stdEstimate,p,q,m,T);
% PURPOSE:
% Forward recursion to construct h's
%
% USAGE:
% h=garchcore(data,parameters,stdEstimate,p,q,m,T);
%
% INPUTS: