代码搜索:maximum
找到约 9,165 项符合「maximum」的源代码
代码结果 9,165
www.eeworm.com/read/349916/10782246
m delta.m
function[change] = delta(ct,mt,y,b)
% The delta function is the non-uniform distributions used by the nonUniform
% mutations. This function returns a change based on the current gen, the
% max gen
www.eeworm.com/read/275170/10832699
pcmcia_readme
*********************************************************
*** ATMEL WLan PC Card 11Mbps ***
*** Linux Device Driver ***
*** Copyright (
www.eeworm.com/read/419830/10834752
c auxiliary.c
/* Some utility functions (not part of the algorithm) */
# include
# include
# include
# include "global.h"
# include "rand.h"
/* Function to return the maximum of two
www.eeworm.com/read/348704/10873951
h os_cfg.h
/*
*********************************************************************************************************
* uC/OS
*
www.eeworm.com/read/273407/10917479
cpp c9-14.cpp
#include
using namespace std;
template
class Compare
{public:
Compare(numtype a,numtype b)
{x=a;y=b;}
numtype max()
{return (x>y)?x:y;}
numtype min
www.eeworm.com/read/272894/10936933
dpr ex1.dpr
(*
Heap
First thought:
1.Keep exact |M| in heap for every check
2.and output Max in heap for every check
but because in step 1, item that is deleted may be not Max
that is wrong for heap oper
www.eeworm.com/read/272147/10968235
cpp gradebook.cpp
// Fig. 6.4: GradeBook.cpp
// Member-function definitions for class GradeBook that
// determines the maximum of three grades.
#include
using std::cout;
using std::cin;
using std::endl
www.eeworm.com/read/271693/10983703
m maxsize.m
function res = maxsize(varargin)
% DESCRIPTION res = maxsize(a,b,c,...)
% Takes any number of inputs and
% leaves the maximum size for all of them.
% INPUT
% an argument list with variables of dif
www.eeworm.com/read/465477/6937812
txt rfc1626.txt
Network Working Group R. Atkinson
Request for Comments: 1626 Naval Research Laboratory
Category: Standards Track
www.eeworm.com/read/468911/6981770
m inputmatrix.m
function input = inputmatrix(matrix,dx,dy)
% creates a matrix of the form 'input' = [x1 y1 value1;x2 y2 value2; ...]
% from a matrix of the form 'matrix' = [value11 value12 ...; value21
% value22...;