代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/323721/13325342
m objeaso.m
% OBJEASO.M (OBJective function for EASom function)
%
% This function implements the EASOM function.
%
% Syntax: ObjVal = objeaso(Chrom,rtn_type)
%
% Input parameters:
% Chrom - Ma
www.eeworm.com/read/323721/13325344
m objfun1a.m
% OBJFUN1A.M (OBJective function for axis parallel hyper-ellipsoid)
%
% This function implements the axis parallel hyper-ellipsoid.
%
% Syntax: ObjVal = objfun1a(Chrom,rtn_type)
%
% Input
www.eeworm.com/read/323721/13325362
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/137369/13325805
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/137285/13334855
c code_ez_var_usg.c
DNT; fprintf( fp, "-v verbosity (- )", dc->verbose);
DNT; fprintf( fp, "-o outfile (- )");
DNT; fprintf( fp, "-out out
www.eeworm.com/read/137285/13334939
h codemod_var_str.h
int modify_overlaps ;/* modify cols giving overlaps */
int modify_doublets ;/* modify cols giving 1+ doublets */
int modify_multiple ;/* modify cols giving 2+ doublets */
www.eeworm.com/read/137285/13335044
h code_ez_var_str.h
int verbose ; /* - */
char outfile[100] ;/* - */
int out ; /* whether to print alist */
long int seed ; /* -
www.eeworm.com/read/320816/13418105
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/320816/13418136
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/319883/13440456
h normal.h
// normal.h
// Normalize an array of values to the range 0 to 1
#include "tempcomp.h"
namespace compare {
template
void normalize(Toriginal* data, Tn