代码搜索:maximum

找到约 9,165 项符合「maximum」的源代码

代码结果 9,165
www.eeworm.com/read/271244/11002045

m maxp.m

function[x,y,xx,yy]=maxp(nlook,data,nshift,periodk,periodk1) % The function MAXP extracts maximum points and their coordinates for the data with well distinguishable extrema. % The data do not ha
www.eeworm.com/read/416320/11033449

m maxt.m

% File: maxt.m % Description: % Use of the Hamming bound to determine the maximum correcting capability % given the dimension of the code and number of redundant bits. % Copyright (c) 2005. Robert
www.eeworm.com/read/468875/6980926

m broyden.m

function y = broyden ( F, J, x0, TOL, Nmax ) %BROYDEN solve the system of nonlinear equations F(x) = 0 using % Broyden's method % % calling sequences: % y = br
www.eeworm.com/read/374751/7126863

pas hidtoken.pas

{******************************************************************} { } { Borland Delphi Runtime Library
www.eeworm.com/read/459981/7259699

ini config.ini

;此文件,为FTKernelAPI 兼容BT协议网络内核库的配置文件,并且说明了具体配置项的含义 ;大部分参数都是任务相关的参数,全局相关的参数列举如下: ;listen_port ;fix_port ;port ;minport ;maxport ;fix_client_id ;dhke_support ;bind_ip ;MyID ;report_ip ;浮点数相关
www.eeworm.com/read/458682/7291335

sh random-between.sh

#!/bin/bash # random-between.sh # Random number between two specified values. # Script by Bill Gradwohl, with minor modifications by the document author. # Used with permission. randomBetween() {
www.eeworm.com/read/457902/7315718

c misuse.c

/* misuse.c -- uses a function incorrectly */ #include int imax(); /* old-style declaration */ int main(void) { printf("The maximum of %d and %d is %d.\n", 3, 5,
www.eeworm.com/read/457902/7315728

c proto.c

/* proto.c -- uses a function prototype */ #include int imax(int, int); /* prototype */ int main(void) { printf("The maximum of %d and %d is %d.\n", 3, 5, imax(3
www.eeworm.com/read/455115/7377799

m lineseg.m

% LINESEG - Form straight line segements from an edge list. % % Usage: seglist = lineseg(edgelist, tol) % % Arguments: edgelist - Cell array of edgelists where each edgelist is an %
www.eeworm.com/read/449530/7501249

c misuse.c

/* misuse.c -- uses a function incorrectly */ #include int imax(); /* old-style declaration */ int main(void) { printf("The maximum of %d and %d is %d.\n", 3, 5,