代码搜索:maximum

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

代码结果 9,165
www.eeworm.com/read/471742/6888592

m drive_power.m

%drive_power.m %plots the power supplied by the driving force versus frequency clear; m=0.5; %mass k=0.5; %spring constant F0=0.5;
www.eeworm.com/read/195191/8170185

h defines.h

// defines.h #if !defined(DEFINES_H) #define DEFINES_H #define maxfil 100 //maximum length of file names #define infinity 9999999 //an arbitrary value given to infinity #define maxtloop 100 /
www.eeworm.com/read/295249/8177461

html limits.h.html

www.eeworm.com/read/194440/8195017

m marmousi_demo.m

% Marmousi: finite difference modelling of Marmousi % % Marmousi finite difference modelling % Just run the script load marmousi_dz10 %load marmousi_mod dx=x(2)-x(1);; %cdp interval xmax=max(
www.eeworm.com/read/294862/8197384

8 athctrl.8

.TH "ATHCTRL" "8" "February 2006" "" "" .SH "NAME" \fBathctrl\fP \- sets the maximum distance between communicating stations .SH "SYNOPSIS" .B athctrl [-h] [-i device] [-d distance] .SH "DESCRIPTION"
www.eeworm.com/read/395028/8199154

h f32x_usb_config.h

//----------------------------------------------------------------------------- // F32x_USB_Config.h //----------------------------------------------------------------------------- // Copyright 200
www.eeworm.com/read/292921/8323369

m init.m

% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2 % COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER % % This Copyright applies only to this particular MATLAB implementation % of the FS-1016 CELP
www.eeworm.com/read/292598/8346325

m getusan.m

%function U = getUSAN(A,maxInt,sigma,thresh,width) % % Returns the USAN response of a greysale image % % INPUT: % A - the image. Intensity must be quantized as integers with a minimum %
www.eeworm.com/read/292598/8346333

m susan.m

%function [U,V,USAN] = SUSAN(A,maxInt,sigma,thresh,g,radius,width) % % Returns the USAN response of a greysale image % % INPUT: % A - the image. Intensity must be quantized as integers with a mi
www.eeworm.com/read/173816/9634388

m 2-34.m

s = 'Find the starting indices of the shorter string.'; findstr(s,'the') findstr('the',s) strfind(s, 'in') strfind(s, 'In') % 区别大小写,返回空数组 strfind('in',s) % strfind函数的第二个字符串作为查询的子串 %