代码搜索:Numerical
找到约 2,441 项符合「Numerical」的源代码
代码结果 2,441
www.eeworm.com/read/221024/14775725
html http:^^www.cs.wisc.edu^~deboor^717^notes.html
Date: Mon, 11 Nov 1996 17:27:13 GMT
Server: NCSA/1.5
Content-type: text/html
Last-modified: Mon, 05 Aug 1996 20:37:25 GMT
Content-length: 1065
CS717 - Numerical Functional Analy
www.eeworm.com/read/388927/2545757
java nrcx.java
package uk.ac.man.cs.choif.extend;
import java.io.*;
import java.util.*;
import uk.ac.man.cs.choif.extend.io.*;
import uk.ac.man.cs.choif.extend.sort.*;
/**
* Numerical recipes in C : 2nd Edition
*
www.eeworm.com/read/356491/10225598
m steepest0.m
function steepest0
%STEEPEST0 steepest descent algorithm 最速下降法
%参考文献:J. Barzilai and J. M. Borwein Two point step size gradient methods
%IMA Journal of Numerical Analysis Vol .8 pp. 141-148 ,
www.eeworm.com/read/356491/10225599
m twopoint20.m
function twopoint20
%TWOPOINT20 Two point step size gradient methods 两点步长梯度法2
%参考文献:J. Barzilai and J. M. Borwein Two point step size gradient methods
%IMA Journal of Numerical Analysis Vol .8
www.eeworm.com/read/356491/10225600
m twopoint10.m
function twopoint10
%TWOPOINT10 Two point step size gradient methods 两点步长梯度法1
%参考文献:J. Barzilai and J. M. Borwein Two point step size gradient methods
%IMA Journal of Numerical Analysis Vol .8
www.eeworm.com/read/108779/15575592
txt 算法常用术语中英对照.txt
算法常用术语中英对照
算法常用术语中英对照
Data Structures 基本数据结构
Dictionaries 字典
Priority Queues 堆
Graph Data Structures 图
Set Data Structures 集合
Kd-Trees 线段树
Numerical Problems 数值问题
Solving Line
www.eeworm.com/read/409626/11317616
m odesys.m
% File ODEsys for finding numerical and exact solutions
% to the system of differential equations
% y1'=-30*y1-29*y2; y2'=-29*y1-30*y2 with the initial conditions
% y1(0) = 2, y2(0) = 0.
% Symbo
www.eeworm.com/read/409626/11317665
m odesys.m
% File ODEsys for finding numerical and exact solutions
% to the system of differential equations
% y1'=-30*y1-29*y2; y2'=-29*y1-30*y2 with the initial conditions
% y1(0) = 2, y2(0) = 0.
% Symbo
www.eeworm.com/read/230076/14306495
txt yuanma.txt
module NUMERICAL
use IMSL
implicit none
real ::zero=0.1!可容忍誤差
contains
real function bisect(guess_a,guess_b,ca,s,k,r,q,t)
real ::guess_a !區間值下界
real ::guess_b !區間值上界
real
www.eeworm.com/read/323119/13349900
tst function.tst
# Test of functions
#
# mysql -v < this_file
#
# numerical functions
#
select 1+1,1-1,1+1*2,8/5,8%5,mod(8,5),mod(8,5)|0,-(1+1)*-2,sign(-5) ;
select floor(5.5),floor(-5.5),ceiling(5.5),ceiling(-5.5),