代码搜索:Optimization
找到约 10,000 项符合「Optimization」的源代码
代码结果 10,000
www.eeworm.com/read/455033/7378541
edp newton.edp
{ // --- a real non linear test ---
mesh Th=square(10,10); // mesh definition of $\Omega$
Th = adaptmesh(Th,0.05,IsMetric=1,splitpbedge=1);
//plot(Th,wait=1);
//Th = adaptmesh(Th,0.1,IsMetric=1,spl
www.eeworm.com/read/455033/7378583
edp algo.edp
// cleanning version 07/2008 FH in Sevilla.
real umax=0;
{
// minimisation of $J(u) = \frac12\sum (i+1) u_i^2 - b_i $
// work array
real[int] b(10),u(10);
func real J(real[int] & u)
www.eeworm.com/read/452217/7445064
bbl sga-c.bbl
\begin{thebibliography}{}
\bibitem[Booker, 1982]{Booker:82}
Booker, L.~B. (1982).
\newblock Intelligent behavior as an adaptation to the task environment
(Doctoral dissertation, Technical Repo
www.eeworm.com/read/206731/7456754
bbl sga-c.bbl
\begin{thebibliography}{}
\bibitem[Booker, 1982]{Booker:82}
Booker, L.~B. (1982).
\newblock Intelligent behavior as an adaptation to the task environment
(Doctoral dissertation, Technical Repo
www.eeworm.com/read/447996/7542326
syr buff.syr
Release 6.3i - xst G.35
Copyright (c) 1995-2004 Xilinx, Inc. All rights reserved.
--> Parameter TMPDIR set to __projnav
CPU : 0.00 / 0.81 s | Elapsed : 0.00 / 1.00 s
--> Parameter xsthdpdir set to
www.eeworm.com/read/447996/7542469
syr fulladdr.syr
Release 6.3i - xst G.35
Copyright (c) 1995-2004 Xilinx, Inc. All rights reserved.
--> Parameter TMPDIR set to __projnav
CPU : 0.00 / 0.80 s | Elapsed : 0.00 / 1.00 s
--> Parameter xsthdpdir set to
www.eeworm.com/read/446239/7582999
m rastrigin.m
% Rastrigin.m
% Rastrigin function
%
% used to test optimization/global minimization problems
%
% f(x) = sum([x.^2-10*cos(2*pi*x) + 10], 2);
%
% x = N element row vector containing [x0, x1, .