代码搜索:implicit

找到约 5,250 项符合「implicit」的源代码

代码结果 5,250
www.eeworm.com/read/476406/6760824

f90 utility.f90

module typedef implicit none type vector2f real x,y end type type line type(vector2f) :: a,b type(vector2f) :: vector end type interface operator(+) module
www.eeworm.com/read/409260/11338616

f90 utility.f90

module typedef implicit none type vector2f real x,y end type type line type(vector2f) :: a,b type(vector2f) :: vector end type interface operator(+) module
www.eeworm.com/read/258562/11854203

f90 utility.f90

module typedef implicit none type vector2f real x,y end type type line type(vector2f) :: a,b type(vector2f) :: vector end type interface operator(+) module
www.eeworm.com/read/344139/11907594

makefile~

CC = gcc LINK = gcc CFLAGS = -g -c INCPATH = LIBS = OBJECTS_DIR = ./ TARGET=sig1 sig2 sig3 ####### Implicit rules .SUFFIXES: .c .c.o: $(CC) $(CFLAGS) $(INCPATH) -o $@ $< #####
www.eeworm.com/read/344139/11907659

makefile~

CC = gcc LINK = gcc CFLAGS = -g -c INCPATH = LIBS = OBJECTS_DIR = ./ TARGET=sig1 sig2 sig3 ####### Implicit rules .SUFFIXES: .c .c.o: $(CC) $(CFLAGS) $(INCPATH) -o $@ $< #####
www.eeworm.com/read/344139/11907727

makefile

CC = gcc LINK = gcc CFLAGS = -g -c INCPATH = LIBS = OBJECTS_DIR = ./ TARGET=sig1 sig2 sig3 ####### Implicit rules .SUFFIXES: .c .c.o: $(CC) $(CFLAGS) $(INCPATH) -o $@ $< #####
www.eeworm.com/read/154700/11934210

f90 blas.f90

FUNCTION IDENTITY(n) implicit none integer n,i real(8), dimension(n,n) ::identity identity=0.0 do i=1,n identity(i,i)=1.0d0 end do END FUNCTION IDENTITY SUBROU
www.eeworm.com/read/152732/12089996

f90 test6.f90

PROGRAM test6 ! Use the STEAM data from Draper & Smith to test PARTIAL_CORR. USE lsq IMPLICIT NONE INTEGER :: ier, case, col REAL ( lsq_kind ) :: x(0:9), y, cormat(36), ycorr(
www.eeworm.com/read/128196/14311350

gcc makefile.gcc

# # # GCC Makefile for splash and tests # # CC=gcc CCFLAGS= -g -fno-implicit-templates .c.o: $(CC) -c $(CCFLAGS) $*.c .cc.o: $(CC) $(CCFLAGS) -c $*.cc spltest: tsplash.o regex.o $
www.eeworm.com/read/128196/14311375

gcc makefile.gcc

# # Makefile for GCC # # # NOTE: -lgpp maybe -lg++ on your system # CC=gcc CCFLAGS= -g -fno-implicit-templates -I.. .c.o: $(CC) -c $(CCFLAGS) $*.c .cc.o: $(CC) $(CCFLAGS) -c $*.cc