代码搜索:minimum

找到约 5,594 项符合「minimum」的源代码

代码结果 5,594
www.eeworm.com/read/290380/8487052

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/290380/8487142

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/289731/8532571

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/389321/8533569

m dup.m

function y = dup(x, step, phase) % DUP Diagonal Upsampling % % y = dup(x, step, [phase]) % % Input: % x: input image % step: upsampling factors for each dimension which should be a % 2-vect
www.eeworm.com/read/389321/8533623

m ddown.m

function y = ddown(x, step, phase) % DUP Diagonal Downsampling % % y = ddown(x, step, [phase]) % % Input: % x: input image % step: upsampling factors for each dimension which should be a % 2-vector
www.eeworm.com/read/288910/8595524

cpp ch05.02.cpp

// #include #include #include using namespace std; /** ** Minimum value: 1 occurs: 5 times. **/ int min( const vector< int > &ivec, int &occurs ) { int
www.eeworm.com/read/387489/8672572

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/430935/8718297

~cpp uscroll.~cpp

/*********************************************/ /* TeeChart Delphi Component Library 4.0 */ /* Demo */ /* Copyright (c) 1995-1998 by David Berneda */ /* A
www.eeworm.com/read/430935/8718387

cpp uscroll.cpp

/*********************************************/ /* TeeChart Delphi Component Library 4.0 */ /* Demo */ /* Copyright (c) 1995-1998 by David Berneda */ /* A
www.eeworm.com/read/286953/8736535

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