代码搜索:Solver

找到约 5,733 项符合「Solver」的源代码

代码结果 5,733
www.eeworm.com/read/265827/11252810

html globals_func.html

Othello Solver: File Member Index
www.eeworm.com/read/265827/11252818

html modules.html

Othello Solver: Module Index
www.eeworm.com/read/265827/11252823

html files.html

Othello Solver: File Index
www.eeworm.com/read/265827/11252826

html globals_defs.html

Othello Solver: File Member Index
www.eeworm.com/read/237688/13937107

java symbol.java

package xcalc; interface Symbol { public abstract Real eval(); } final class Num implements Symbol { private static Num xVar = new Num(Real.ZERO); private static Num yVar = new Num(Rea
www.eeworm.com/read/133875/14019751

m exm09714_0.m

%exm09714_0.m 例9.7.1.4_1的主运行程序 % 它调用exm9714_1.mdl clc xsym=dsolve('D2x+100*Dx+0.9999*x=0','x(0)=1,Dx(0)=0','t') dxsym=diff(xsym,'t') t=(0:5000)/10;x=eval(char(dxsym)); %产生绘解析解图形的数
www.eeworm.com/read/200131/15440097

m exm080714m_1.m

%exm080714m_1.m clc disp('按任意键,开始运行。') disp('(1) 用符号计算求此方程解析解') pause xsym=dsolve('D2x+100*Dx+0.9999*x=0','x(0)=1,Dx(0)=0','t') dxsym=diff(xsym,'t') disp(' ') disp('按任意键,继续运行。') disp('(2) 三
www.eeworm.com/read/103618/15727783

m exm09714_0.m

%exm09714_0.m 例9.7.1.4_1的主运行程序 % 它调用exm9714_1.mdl clc xsym=dsolve('D2x+100*Dx+0.9999*x=0','x(0)=1,Dx(0)=0','t') dxsym=diff(xsym,'t') t=(0:5000)/10;x=eval(char(dxsym)); %产生绘解析解图形的数
www.eeworm.com/read/288877/8596856

txt accept.m.txt

function p = Accept(p,q,solver) % p = Accept(p,q,solver) % Accept proposal q % Colin Fox, 21 Jan 2003 % Do the special case where no change is proposed if all(q.NewR == q.OldR) % no chan
www.eeworm.com/read/187542/8626849

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