代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/217119/14978201
c tbdm.c
/***********************************************************************
*
* TBDM Version 49
*
**********************************************************************
*
* TURBO DIFMAG: Compute High Re
www.eeworm.com/read/115704/15003737
txt d11r6.txt
Private Sub Command1_Click()
'PROGRAM D11R6
'Driver for routine POWELL
NP = 3
NDIM = NP
FTOL = 0.000001
Dim P(3), XI(3, 3)
For I = 1 To NP
For J = 1 To NP
www.eeworm.com/read/216367/15017719
txt d11r6.txt
Private Sub Command1_Click()
'PROGRAM D11R6
'Driver for routine POWELL
NP = 3
NDIM = NP
FTOL = 0.000001
Dim P(3), XI(3, 3)
For I = 1 To NP
For J = 1 To NP
www.eeworm.com/read/114869/15035193
pas min1.pas
{ **********************************************************************
* Program MIN1.PAS *
* Version 1.2d
www.eeworm.com/read/215124/15073632
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/215124/15073703
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/212307/15160181
m minbrack.m
function [br_min, br_mid, br_max, num_evals] = minbrack(f, a, b, fa, ...
varargin)
%MINBRACK Bracket a minimum of a function of one variable.
%
% Description
% BRMIN, BRMID, BRMAX, NUMEVALS] = M
www.eeworm.com/read/206867/15286940
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, 2