代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/406613/11439095
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/406613/11439126
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/405286/11466766
java dialbeaninfo.java
//file: DialBeanInfo.java
package magicbeans;
import java.beans.*;
public class DialBeanInfo extends SimpleBeanInfo {
public PropertyDescriptor[] getPropertyDescriptors( ) {
try {
Prope
www.eeworm.com/read/405217/11468640
m llimit.m
% LLIMIT Limit a vector to a given minimum value
%
% [y] = LLIMIT (x,m) limits vector x to have minimum value m
%
function [y] = llimit (x, m);
y = x;
for q = 1:length(x)
if (x(q) < m
www.eeworm.com/read/403151/11521542
#2 f3xx_usb0_descriptor.#2
//-----------------------------------------------------------------------------
// F3xx_USB0_Descriptor.c
//-----------------------------------------------------------------------------
// Copyrigh
www.eeworm.com/read/403151/11521543
#1 f3xx_usb0_descriptor.#1
//-----------------------------------------------------------------------------
// F3xx_USB0_Descriptor.c
//-----------------------------------------------------------------------------
// Copyrigh
www.eeworm.com/read/403151/11521547
lst f3xx_usb0_descriptor.lst
C51 COMPILER V7.50 F3XX_USB0_DESCRIPTOR 06/22/2006 17:45:43 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE F3XX_USB0_DESCRIPTOR
OBJECT MOD
www.eeworm.com/read/403151/11521566
#3 f3xx_usb0_descriptor.#3
//-----------------------------------------------------------------------------
// F3xx_USB0_Descriptor.c
//-----------------------------------------------------------------------------
// Copyrigh
www.eeworm.com/read/402283/11539802
m mm1903.m
%(MM1903.m plot)
Hz=[20:10:100 200:100:1000 1500 2000:1000:10000]; % frequencies in Hertz
spl=[76 66 59 54 49 46 43 40 38 22 ... % sound pressure level in dB
14 9 6 3.5 2.5 1.4 0.7 0 -1 -3 ...
-8 -
www.eeworm.com/read/402270/11539972
cpp minmax1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti