代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/299984/7140047
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/461381/7228408
m showimg.m
function img=showimg(vet, height, wide)
% img=showimg(vet, height, wide)
%
% Function that shows the vector 'vet'
% as an image of size height * wide.
for col=1:wide,
for lin = 1:height,
www.eeworm.com/read/461264/7230463
pro minf_parabolic.pro
pro minF_parabolic, xa,xb,xc, xmin, fmin, FUNC_NAME=func_name, $
MAX_ITERATIONS=maxit, $
TOLERANCE=TOL,
www.eeworm.com/read/460435/7250522
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/458387/7297338
h float.h
#pragma force_top_level
#pragma include_only_once
/* float.h: ANSI 'C' (X3J11 Oct 88) library header, section 2.2.4.2 */
/* Copyright (C) Codemist Ltd, 1988 */
/* Cop
www.eeworm.com/read/454938/7381417
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/454009/7402805
java findrange.java
/*
* File: FindRange.java
* Name:
* Section Leader:
* --------------------
* This file is the starter file for the FindRange problem.
*/
import acm.program.*;
public class FindRang
www.eeworm.com/read/453496/7418580
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/453496/7418611
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,