代码搜索:minimum

找到约 5,594 项符合「minimum」的源代码

代码结果 5,594
www.eeworm.com/read/475955/6771213

c min_max.c

#include #include void main (void) { printf("Maximum of %f and %f is %f\n", 10.0, 25.0, max(10.0, 25.0)); printf("Minimum of %f and %f is %f\n", 10.0,
www.eeworm.com/read/233441/6788208

c ch05.02.c

// #include #include #include /** ** Minimum value: 1 occurs: 5 times. **/ int min( const vector< int > &ivec, int &occurs ) { int minVal = ivec[
www.eeworm.com/read/473097/6856331

java maxminave.java

class MaxMinAve { public static void main(String args[]){ float maximum, minimum; float sum=0; float grades[]= new float[6]; grades[0]=(float)65.5; grades[1]=89; grades[2]=
www.eeworm.com/read/472768/6865260

c minmax.c

#include #define MIN(x, y) (((x) < (y)) ? (x): (y)) #define MAX(x, y) (((x) > (y)) ? (x): (y)) void main(void) { printf("Minimum of 3 and 5 is %d\n", MIN(3, 5)); printf("Max
www.eeworm.com/read/472768/6865291

c min_max.c

#include #include void main (void) { printf("Maximum of %f and %f is %f\n", 10.0, 25.0, max(10.0, 25.0)); printf("Minimum of %f and %f is %f\n", 10.0,
www.eeworm.com/read/471348/6890564

m objfun9.m

% OBJFUN9.M (OBJective function for sum of different power FUNction 9) % % This function implements the sum of different power. % % Syntax: ObjVal = objfun9(Chrom,rtn_type) % % Input param
www.eeworm.com/read/471348/6890565

m objgold.m

% OBJGOLD.M (OBJective function for GOLDstein-price function) % % This function implements the GOLDSTEIN-PRICE function. % % Syntax: ObjVal = objgold(Chrom,rtn_type) % % Input parameters:
www.eeworm.com/read/471348/6890571

m objfun1.m

% OBJFUN1.M (OBJective function for de jong's FUNction 1) % % This function implements the DE JONG function 1. % % Syntax: ObjVal = objfun1(Chrom,rtn_type) % % Input parameters: % Chro
www.eeworm.com/read/471348/6890574

m objbran.m

% OBJBRAN.M (OBJective function for BRANin RCOS function) % % This function implements the BRANIN RCOS function. % % Syntax: ObjVal = objbran(Chrom,rtn_type) % % Input parameters: % Ch
www.eeworm.com/read/471348/6890575

m objfun6.m

% OBJFUN6.M (OBJective function for rastrigins FUNction 6) % % This function implements the RASTRIGIN function 6. % % Syntax: ObjVal = objfun6(Chrom,rtn_type) % % Input parameters: % C