代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/357617/10204728
txt 05-21.txt
% find the minimum of the function f(x)=x^3+a*x^2+b*x+c
function [x0,y] = funmin(a,b,c,x1,x2)
options = optimset('Display','off');
[x0,y] = fminbnd(@poly3,x1,x2,options);
function y=poly3(x)
www.eeworm.com/read/354492/10349850
cpp template.cpp
// Section 10.1
// $ CC template.cpp
/*
minimum of 10 and 20 is: 10
minimum of 10.3 and 20.6 is: 10.3
*/
#include
using std::cout;
using std::endl;
template
www.eeworm.com/read/353723/10425669
m hpso.m
function [x,fval,gfx,output]=hPSO(fitnessfun,nvars,options,varargin)
%Syntax: [x,fval,gfx,output]=hPSO(fitnessfun,nvars,options,varargin)
%___________________________________________________________
www.eeworm.com/read/353416/10449016
txt medium_read me.txt
------find the medium value --------
/////////////////change the value that can be compared ///////////////////////////
assign dat1=(data1
www.eeworm.com/read/353416/10449041
bak medium_read me.txt.bak
------find the medium value --------
/////////////////change the value that can be compared ///////////////////////////
assign dat1=(data1
www.eeworm.com/read/424063/10501609
m quadi.m
function [stepmin]=quadinter(steps,matf)
%QUADINTER Quadraticly interpolates three points to estimate minimum.
% This function uses QUADRATIC interpolation and
% the values of three
www.eeworm.com/read/424063/10501618
m cubici1.m
function r=cubici1(fnew,fold,graddnew,graddold,stepsize)
%CUBICI1 Cubicly interpolates 2 points and gradients to estimate minimum.
%
% This function uses cubic interpolation and the values of two
www.eeworm.com/read/423959/10513119
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/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/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