代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/266379/11229252
cpp fig06_30.cpp
/**
* Remove the minimum item.
* Throws UnderflowException if empty.
*/
void deleteMin( )
{
if( isEmpty( ) )
throw UnderflowException( );
www.eeworm.com/read/335795/12499009
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/147408/12554353
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
www.eeworm.com/read/334860/12567738
m min.m
%列状数据最小值
%例如
% A=[11 4 0.2;22 3 0.5;0 3 0.4];
% min(A)
%
%MIN Smallest component.
% For vectors, MIN(X) is the smallest element in X. For matrices,
% MIN(X) is a row vector contain
www.eeworm.com/read/147211/12576689
h melp.h
/*
2.4 kbps MELP Proposed Federal Standard speech coder
Fixed-point C code, version 1.0
Copyright (c) 1998, Texas Instruments, Inc.
Texas Instruments has intellectual property rights on
www.eeworm.com/read/334737/12579650
cs fifoint16collection.cs
using System;
using System.IO;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
namespace SteganoTape {
class FifoInt16Collection {
private int ma
www.eeworm.com/read/147096/12585089
m arraymin.m
function [sys, x0, str, ts] = arraymin(t,x,u,flag)
%ARRAYMIN outputs the index of the minimum input.
% This M-file is designed to be used in a SIMULINK S-function block.
% This function will de
www.eeworm.com/read/146831/12608301
c tbdm.c
/***********************************************************************
*
* TBDM Version 49
*
**********************************************************************
*
* TURBO DIFMAG: Compute H
www.eeworm.com/read/247866/12615024
c f3xx_usb0_descriptor.c
//-----------------------------------------------------------------------------
// F3xx_USB0_Descriptor.c
//-----------------------------------------------------------------------------
// Copyrigh
www.eeworm.com/read/247673/12633356
c ch05.02.c
// #include
#include
#include
/**
** Minimum value: 1 occurs: 5 times.
**/
int min( const vector< int > &ivec, int &occurs )
{
int minVal = ivec[