代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/409477/11321639
m objsixh.m
% OBJSIXH.M (OBJective function for SIX Hump camelback function)
%
% This function implements the six hump camelback function.
%
% Syntax: ObjVal = objsixh(Chrom,rtn_type)
%
% Input parame
www.eeworm.com/read/409477/11321643
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/409477/11321646
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/409477/11321669
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/263879/11337971
m min.m
%列状数据最小值
%例如
% A=[11 4 0.2;22 3 0.5;0 3 0.4];
% min(A)
%
%MIN Smallest component.
% For vectors, MIN(X) is the smallest element in X. For matrices,
% MIN(X) is a row vector contain
www.eeworm.com/read/409272/11337998
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/409272/11338061
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/407093/11429697
c dlamchtst.c
#include
main()
{
/* Local variables */
double base, emin, prec, emax, rmin, rmax, t, sfmin;
extern double dlamch_(char *);
double rnd, eps;
eps = dlamch_("Epsilon");
www.eeworm.com/read/407093/11429700
c slamchtst.c
#include
main()
{
/* Local variables */
float base, emin, prec, emax, rmin, rmax, t, sfmin;
extern double slamch_(char *);
float rnd, eps;
eps = slamch_("Epsilon");
www.eeworm.com/read/406664/11437789
c ch05.02.c
// #include
#include
#include
/**
** Minimum value: 1 occurs: 5 times.
**/
int min( const vector< int > &ivec, int &occurs )
{
int minVal = ivec[