代码搜索:Objective

找到约 3,719 项符合「Objective」的源代码

代码结果 3,719
www.eeworm.com/read/241396/13147246

m fg_names.m

function [fun, grad] = fg_names(alg) %FG_NAMES Returns names of functions which evaluate objective, constraints & grad. % [fun, grad] = fg_names(alg) returns the names of two functions. The first %
www.eeworm.com/read/138987/13197163

m fg_names.m

function [fun, grad] = fg_names(alg) %OTFUNGRA Returns names of functions which evaluate objective, constraints & grad. % [fun, grad] = fg_names(alg) returns the names of two functions. The first %
www.eeworm.com/read/324367/13268536

txt pgm14_03.txt

// // This file contains the C# code from Program 14.3 of // "Data Structures and Algorithms // with Object-Oriented Design Patterns in C#" // by Bruno R. Preiss. // // Copyright (c) 2001--
www.eeworm.com/read/324350/13269916

cpp pgm14_03.cpp

// // This file contains the C++ code from Program 14.3 of // "Data Structures and Algorithms // with Object-Oriented Design Patterns in C++" // by Bruno R. Preiss. // // Copyright (c) 1998
www.eeworm.com/read/323721/13325329

m sga.m

% SGA.M (Simple Genetic Algorithm) % % This script implements the Simple Genetic Algorithm. % Binary representation for the individuals is used. % % Author: Hartmut Pohlheim % Histo
www.eeworm.com/read/315324/13545920

m golden_sect.m

% Program: golden_sect.m % Title: Golden-Section Search % Description: Implements the golden-section search. % Theory: See Practical Optimization Sec. 4.4 % Input: % fname: objective functi
www.eeworm.com/read/315321/13545953

m steep_desc3.m

% Program: steep_desc3.m % Title: Steepest-descent algorithm % Description: Implements the steepest-descent method % (Algorithm 5.1) using the inexact line search % algorithm implemented in terms
www.eeworm.com/read/315321/13545954

m steep_desc1.m

% Program: steep_desc1.m % Title: Steepest-descent algorithm without line search % Description: Implements the steepest-descent method % described in Algorithm 5.1. Parameter alpha is determined
www.eeworm.com/read/315321/13545955

m steep_desc2.m

% Program: steep_desc2.m % Title: Steepest-descent algorithm without line search % Description: Implements the steepest-descent method % described in Algorithm 5.2. Parameter alpha is determined
www.eeworm.com/read/315321/13545958

m gauss_newton.m

% Program: gauss_newton.m % Title: Gauss-Newton algorithm % Description: implements the Gauss-Newton algorithm (Algorithm 5.5). % The line search is carried out by using the inexact line search