代码搜索:Operations

找到约 10,000 项符合「Operations」的源代码

代码结果 10,000
www.eeworm.com/read/113685/6126380

result sample.result

************* MULTIGRID BENCHMARK ******************* NUMBER OF POINTS PER DIRECTION = 513 MAXIMUM NORM OF THE ERROR = 0.1484D-05 MAXIMUM NORM OF THE DEFECT = 0.9168D-
www.eeworm.com/read/108009/6187285

cpp matrix.cpp

/////////////////////////////////////////////////////////////////////////////// // // Matrix.cpp // // Demonstrates template metaprogramming for matrix operations // // Copyright
www.eeworm.com/read/105889/6197277

java concatenatedoperation.java

/*$************************************************************************************************ ** ** $Id: ConcatenatedOperation.java,v 1.1 2004/05/06 15:51:51 desruisseaux Exp $ ** ** $Source
www.eeworm.com/read/101990/6234724

1 pkcs15-tool.1

.PU .ds nm \fBpkcs15-tool\fR .TH pkcs15-tool 1 "September 3, 2002" "" OpenSC .SH NAME pkcs15-tool \- utility for manipulating PKCS #15 data structures on smart cards and similar security tokens .SH SY
www.eeworm.com/read/101082/6249299

mk makelocal.mk

# @(#)Makelocal.mk 4.1 ULTRIX 7/17/90 # Make template for Makelocal.mk # Should be used to make sources within a directory and subdirectories # First thing is to include the general variables for
www.eeworm.com/read/493401/6402331

h syscall.h

/* syscalls.h * Nachos system call interface. These are Nachos kernel operations * that can be invoked from user programs, by trapping to the kernel * via the "syscall" instruction. * *
www.eeworm.com/read/486654/6524866

cpp 1813.cpp

/* This Code is Submitted by wywcgs for Problem 1813 on 2006-01-15 at 15:13:02 */ #include int main() { int i, a, b; while(scanf("%d %d", &a, &b) == 2 && (a != 0 || b != 0)) {
www.eeworm.com/read/486579/6535842

m my_ipgmres.m

function [x,iter,flg,inner,operations]=my_ipgmres(A,b,tol,restart,maxit,M,x0,epsilon,scale,p_type,l,u) % IPGMRES % [x,iter,flg,inner]=my_ipgmres(A,b,tol,restart,maxit,M,x0,epsilon,scale,p_type) %
www.eeworm.com/read/486579/6535883

m my_pcg.m

function [x,iter,flg,res,operations]=my_pcg(A,b,tol,maxit,M1,D,M2,x0,ptype) % [x,iter,flg,res,operations]=my_pcg(a,b,tol,maxit,M1,D,M2,x0,ptype) % This code implements CG algorithm with precondition
www.eeworm.com/read/483654/6600213

h synch.h

// synch.h // Data structures for synchronizing threads. // // Three kinds of synchronization are defined here: semaphores, // locks, and condition variables. The implementation for // semaphores is