代码搜索:recursive
找到约 2,177 项符合「recursive」的源代码
代码结果 2,177
www.eeworm.com/read/422060/2044451
phpt bug34982.phpt
--TEST--
Bug #34982 array_walk_recursive() modifies elements outside function scope
--FILE--
www.eeworm.com/read/366702/2880348
c pr33826.c
/* Regression test for PR middle-end/33826 */
/* Verify that recursive functions cannot be pure or const. */
/* { dg-do compile } */
/* { dg-require-effective-target nonpic } */
/* { dg-options "-O1
www.eeworm.com/read/201477/15407279
cpp rsumct.cpp
// step count for recursive sum of n numbers
#include
int count = 0;
template
T Rsum(T a[], int n)
{// Return sum of numbers a[0:n - 1].
count++; // for if condition
www.eeworm.com/read/113029/15472080
cpp fig03_15.cpp
// Fig. 3.15: fig03_15.cpp
// Recursive fibonacci function.
#include
using std::cout;
using std::cin;
using std::endl;
unsigned long fibonacci( unsigned long ); // function protot
www.eeworm.com/read/113029/15472089
cpp fig03_14.cpp
// Fig. 3.14: fig03_14.cpp
// Recursive factorial function.
#include
using std::cout;
using std::endl;
#include
using std::setw;
unsigned long factorial( unsigned l
www.eeworm.com/read/290607/8472272
m rne_dh.m
%RNE_DH Compute inverse dynamics via recursive Newton-Euler formulation
%
% TAU = RNE(ROBOT, Q, QD, QDD)
% TAU = RNE(ROBOT, [Q QD QDD])
%
% Returns the joint torque required to achieve the specified j
www.eeworm.com/read/432860/8567212
m rsc_encode.m
function y = rsc_encode(g, x, terminated)
% Copyright Nov. 1998 Yufei Wu
% MPRG lab, Virginia Tech.
% for academic use only
% encodes a block of data x (0/1)with a recursive systematic
% convolutiona
www.eeworm.com/read/288989/8588236
m rsc_encode.m
function y = rsc_encode(g, x, terminated)
% Copyright Nov. 1998 Yufei Wu
% MPRG lab, Virginia Tech.
% for academic use only
% encodes a block of data x (0/1)with a recursive systematic
% convolutiona
www.eeworm.com/read/431858/8648942
m rls.m
function H = rls(varargin)
%RLS Recursive least-squares FIR adaptive filter.
% H = ADAPTFILT.RLS(L,LAMBDA,INVCOV,COEFFS,STATES) constructs an FIR
% RLS adaptive filter H.
%
% L is the adap