代码搜索:optimize

找到约 6,026 项符合「optimize」的源代码

代码结果 6,026
www.eeworm.com/read/214923/15083071

m democl2.m

clear close all grain = 100; load ripley; echo on; % train gam = 10; kernel = 'RBF_kernel'; sig2 = 1; model = initlssvm(X,Y,'classifier',gam,sig2,kernel,'preprocess'); model = trainlssvm(model);
www.eeworm.com/read/212376/15157343

hpp exm110633_1.hpp

// // MATLAB Compiler: 2.2 // Date: Tue Jun 25 10:54:11 2002 // Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on" // "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ
www.eeworm.com/read/212376/15157460

h comet3.h

/* * MATLAB Compiler: 2.2 * Date: Tue Jun 25 10:53:59 2002 * Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on" * "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ
www.eeworm.com/read/212376/15157482

hpp comet3.hpp

// // MATLAB Compiler: 2.2 // Date: Tue Jun 25 10:54:11 2002 // Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on" // "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ
www.eeworm.com/read/211389/15181000

cygwin_dll makefile.cygwin_dll

#makefile for Cygwin [makes a .dll] default: ltc_dll # Compilation flags. Note the += does not write over the user's CFLAGS! CFLAGS += -I./ -Wall -Wsign-compare -W -Wno-unused -Wshadow -mno-cygwin
www.eeworm.com/read/162614/5524873

ada c43004a.ada

-- C43004A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5526755

c memset.c

extern void abort (void); extern int inside_main; void * memset (void *dst, int c, __SIZE_TYPE__ n) { /* Single-byte memsets should be done inline when optimisation is enabled. */ #ifdef __OP
www.eeworm.com/read/162614/5526765

c printf.c

#include #include extern void abort (void); extern int inside_main; int printf (const char *string, ...) { va_list ap; int r; #ifdef __OPTIMIZE__ if (inside_main) abort
www.eeworm.com/read/162614/5526767

c strncpy.c

extern void abort(void); extern int inside_main; typedef __SIZE_TYPE__ size_t; char * strncpy(char *s1, const char *s2, size_t n) { char *dest = s1; #ifdef __OPTIMIZE__ if (inside_main) abor
www.eeworm.com/read/162614/5526774

c fprintf.c

#include #include extern void abort (void); extern int inside_main; int fprintf (FILE *fp, const char *string, ...) { va_list ap; int r; #ifdef __OPTIMIZE__ if (inside_main