代码搜索:recursion
找到约 958 项符合「recursion」的源代码
代码结果 958
www.eeworm.com/read/123211/14642341
log run.log
%
% === COMPARISON OF RESULTS FROM QUAD, GQUAD, GQUAD6 ===
> format long
> f=quad('sin',0,pi,1.e-5), % Integrate a simple function
f = 2.00000006453000
> % Use a ten point Gauss formula
> [
www.eeworm.com/read/221024/14773839
html http:^^www.cs.cornell.edu^info^courses^spring-96^cs100^exams^prelim1.html
MIME-Version: 1.0
Server: CERN/3.0
Date: Monday, 16-Dec-96 23:32:13 GMT
Content-Type: text/html
Content-Length: 851
Last-Modified: Friday, 09-Feb-96 20:55:11 GMT
CS100 P
www.eeworm.com/read/162614/5517799
c defarg5.c
// { dg-do compile }
// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 5 Sep 2003
// Origin:Wolfgang Bangerth bangerth@dealii.org
// PR
www.eeworm.com/read/471108/6897059
txt todo.txt
970210 cartegw
Possibly convert loops to tail recursion so that
the tool could handle them.
www.eeworm.com/read/292921/8323519
m durbin.m
% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2
% COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the FS-1016 CELP
www.eeworm.com/read/104078/15710422
c actorc.c
/**************************************************************************
*
* NAME
* actorc
*
* FUNCTION
*
* Schur recursion to do autocorrelation analysis.
* Converts autocorrelation sequence to r
www.eeworm.com/read/104078/15710441
c durbin.c
/*****************************************************************************
*
* NAME
* durbin
*
* FUNCTION
*
* Durbin recursion to do autocorrelation analysis.
* Converts autocorr
www.eeworm.com/read/189298/8477297
c hermite.c
/*
** Compute the value of a Hermite polynomial
**
** Inputs:
** n, x: identifying values
**
** Output:
** value of polynomial (return value)
*/
int
hermite( int n, int x )
{
/*
**
www.eeworm.com/read/388617/8595518
cpp recur.cpp
// recur.cpp -- use recursion
#include
void countdown(int n);
int main()
{
countdown(4); // call the recursive function
return 0;
}
void countdown(int n)
{