代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/436271/7773169
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/436250/7774222
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/436250/7774253
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/435817/7783606
h float.h
#ifndef __FLOAT_H__
#define __FLOAT_H__
/* float.h */
/* Produced by enquire version 4.3, CWI, Amsterdam */
/* Radix of exponent representation */
#define FLT_RADIX 2
/* Number of base-F
www.eeworm.com/read/435150/7796489
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
www.eeworm.com/read/199432/7857355
pas unit1.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
Function FUNC(X:real):real;
Function FUNC2(X:array of real;N:integer):real;
www.eeworm.com/read/197958/7960340
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/298428/7962022
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/298428/7962067
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/197875/7965145
c ch05.02.c
// #include
#include
#include
/**
** Minimum value: 1 occurs: 5 times.
**/
int min( const vector< int > &ivec, int &occurs )
{
int minVal = ivec[