代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/400645/11571019
dat vhjmin.dat
./vhjmin
Verify HJMIN multidimensional minimizer
Rosenbroke function
f = 100*(x2-x1^2)^2 + (1-x1)^2
Initial guess b0 = -1.2 1
Function value at it f0 = 24.2
Initia
www.eeworm.com/read/400577/11572696
m nfminbnd.m
function nmin = nfminbnd(fun,n1,n2,itermax,varargin)
%NFMINBND Private routine for optimizing integer complexity /
%regularisation parameters
fmin = inf;
if n2 - n1 < itermax % smal
www.eeworm.com/read/400568/11573736
java ifelse.java
//IfElse.java
import java.util.Random;
public class IfElse {
public static void main(String[] args){
Random random=new Random(); //声明随机数类对象并实例化
int m = random.nextInt(); //产生随机整数
www.eeworm.com/read/157007/11745786
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/260026/11751193
h precisio.h
//$$ precisio.h floating point constants
#ifndef PRECISION_LIB
#define PRECISION_LIB 0
#ifndef SystemV // if there is float.h
#ifdef USING_FLOAT
www.eeworm.com/read/259865/11761662
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/259865/11761729
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/156798/11773351
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/156364/11809234
c ch05.02.c
// #include
#include
#include
/**
** Minimum value: 1 occurs: 5 times.
**/
int min( const vector< int > &ivec, int &occurs )
{
int minVal = ivec[