代码搜索:recursive

找到约 2,177 项符合「recursive」的源代码

代码结果 2,177
www.eeworm.com/read/231526/14228258

lsp printrec.lsp

; prints recursive list structure ;(let (seen-list) (setf seenlist nil) (defun seenp (l) (member l seenlist :test 'eq)) (defun make-seen (l) (setf seenlist (cons l seenlist))) (defun printrec (
www.eeworm.com/read/128837/14277597

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/128837/14277615

asv rsc_encode.asv

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/221868/14716914

f90 ex0831.f90

program ex0831 implicit none integer :: n write(*,*) 'N=' read(*,*) n write(*, "(I2,'! = ',I8)" ) n, fact(n) stop contains recursive integer function fact(n) result(ans)
www.eeworm.com/read/221868/14716998

f90 ex0829.f90

program ex0829 implicit none integer :: n integer, external :: fact write(*,*) 'N=' read(*,*) n write(*, "(I2,'! = ',I8)" ) n, fact(n) stop end recursive integer function fac
www.eeworm.com/read/221847/14718339

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/216014/15029455

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/209499/15218330

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/208614/15242529

f90 ex0831.f90

program ex0831 implicit none integer :: n write(*,*) 'N=' read(*,*) n write(*, "(I2,'! = ',I8)" ) n, fact(n) stop contains recursive integer function fact(n) result(ans)
www.eeworm.com/read/208614/15242571

f90 ex0829.f90

program ex0829 implicit none integer :: n integer, external :: fact write(*,*) 'N=' read(*,*) n write(*, "(I2,'! = ',I8)" ) n, fact(n) stop end recursive integer function fac