代码搜索:F
找到约 10,000 项符合「F」的源代码
代码结果 10,000
www.eeworm.com/read/107949/6187354
f mfftrd.f
SUBROUTINE MFFTRD(C,ISV,ISE,NV,NE,RW)
*
* PURPOSE:
* THIS ROUTINE PERFORMS THE POST-PROCESSING PHASE FOR
* REAL 2-DIMENSIONAL DFT'S, ACCORDING TO FORMULA (2.7)
* IN REF.[1].
www.eeworm.com/read/107797/6188251
asp f.asp
vti_encoding:SR|utf8-nl
vti_cachedlinkinfo:VX|Q|../_Themes/expeditn/THEME.CSS Q|../_Themes/expeditn/GRAPH0.CSS Q|../_Themes/expeditn/COLOR0.CSS Q|../_Themes/expeditn/CUSTOM.CSS F|f1.asp F|bgsgl.asp
www.eeworm.com/read/102395/6233402
gw f.gw
LEDA.GRAPH
void
void
20
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
|{}|
54
1 2 0 |{}|
1 5 0 |{}|
1 16 0 |{}|
2 3 0 |{}|
2 6 0 |{}|
2 5 0 |{}|
3 4 0
www.eeworm.com/read/101082/6241538
f datst.f
character*24 fdate
integer id(3), it(3)
write(*,*) fdate()
call itime(it)
call idate(id)
write(*,*) id, it
end
www.eeworm.com/read/101082/6241539
f systst.f
program systst
integer system
write(*,*) "date", system("date")
write(*,*) "rm xxx", system("rm xxx")
end
www.eeworm.com/read/101082/6241540
f idtst.f
character*8 getlog
integer getuid, getgid, getpid
write(*,*) "I am", getlog(), "uid:", getuid(), "gid:", getgid()
write(*,*) "This is process", getpid()
end
www.eeworm.com/read/101082/6241541
f syml.f
program syml
integer symlnk
external symlnk
write(*,*) symlnk("xyzzy", "poof")
end
www.eeworm.com/read/101082/6241542
f chdtst.f
integer chdir, unlink, access, ier(8)
write(*,*) "moving to /tmp"
ier(1) = chdir("/tmp")
call system("pwd")
open(1, file="scratch")
close(1)
write(*,*) "linking"
ier(2) = link("scratch", "temp
www.eeworm.com/read/101082/6241543
f argtst.f
character*16 arg, env
n = iargc()
call getarg(0, arg)
write(*,*) "name:", arg
if (n .gt. 0) then
do 100 i=1, n
call getarg(i, arg)
call getenv(arg, env)
100 write(*,*) i, arg, env
e
www.eeworm.com/read/101082/6241544
f seektst.f
character*20 word1, word2
integer ftell, fseek
open(1, file="/usr/dict/words")
iend = ftell(1)
iseek1 = fseek(1, iend/2, 0)
read(1,'(a)') word1
iword = ftell(1)
read(1,'(a)') word1
rewind 1