代码搜索:implicit

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

代码结果 5,250
www.eeworm.com/read/113483/6131319

m shaperectanglebycenter.m

function data = shapeRectangleByCenter(grid, center, widths) % shapeRectangleByCenter: implicit surface function for a (hyper)rectangle. % % data = shapeRectangleByCenter(grid, center, widths) %
www.eeworm.com/read/113483/6131320

m shapehyperplane.m

function data = shapeHyperplane(grid, normal, point) % shapeHyperplane: implicit surface function for a hyperplane. % % data = shapeHyperplane(grid, normal, point) % % Creates a signed distance
www.eeworm.com/read/113483/6131321

m shapesphere.m

function data = shapeSphere(grid, center, radius) % shapeSphere: implicit surface function for a sphere. % % data = shapeSphere(grid, center, radius) % % Creates an implicit surface function (a
www.eeworm.com/read/113483/6131322

m shapecylinder.m

function data = shapeCylinder(grid, ignoreDims, center, radius) % shapeCylinder: implicit surface function for a cylinder. % % data = shapeCylinder(grid, ignoreDims, center, radius) % % Creates
www.eeworm.com/read/109010/6180193

java enhmatchingtask.java

/* * $Header: /home/cvs/jakarta-struts/contrib/tag-doc/src/java/org/apache/struts/taskdefs/EnhMatchingTask.java,v 1.4 2004/03/14 07:15:06 sraeburn Exp $ * $Revision: 1.4 $ * $Date: 2004/03/14 07
www.eeworm.com/read/101082/6242708

t1

setvar: @ = noreset = 0 envflg = 0 Mflags = 040001 look for explicit deps. 3 look for implicit rules. 3 right match = mkpass.c setvar: < = noreset = 0 envflg = 0 Mflags
www.eeworm.com/read/476406/6760787

f90 sglui3.f90

module sgl_util use sgl implicit none integer, save :: x=200 integer, save :: y=200 contains subroutine display() integer, parameter :: size = 20 call sglClearBuffer() call sglC
www.eeworm.com/read/476406/6760971

f90 qsort.f90

program main use DFPORT implicit none integer :: a(5) = (/ 5,3,1,2,4 /) integer(2), external :: compareINT call QSORT( a, 5, 4, compareINT ) write(*,*) a stop end program inte
www.eeworm.com/read/476406/6761027

f90 ex0509.f90

program ex0509 implicit none real :: a real :: b = 3.0 a=SQRT(b)**2-b ! 理论上a应该要等于0 if ( a==0.0 ) then write(*,*) "a等于0" else write(*,*) "a不等于0" end if stop end
www.eeworm.com/read/476406/6761028

for ex0501.for

PROGRAM ex0501 IMPLICIT NONE REAL speed WRITE(*,*) "speed:" READ (*,*) speed IF ( speed .GT. 100 ) then ! FORTRAN 77要用缩写.GT.代表大于">" write(*,*) "Slow down." END IF STOP END