搜索资源列表
sxjc063
- 数值分析的习题答案 )...《计算机数学基础》数值分析期末复习提纲(12-14章) <doc格式> (下载) 《计算机数学基础》...《计算机数学基础(下)》第12章练习与习题答案 <doc格式> (下载) 《计算机数学基础(下)》第11章... -Exercise answer )..." computer math, "Numerical Analysis Exercises outline (12 - 14)
sxjc064
- )...《计算机数学基础》数值分析期末复习提纲(12-14章) <doc格式> (下载) 《计算机数学基础》...《计算机数学基础(下)》第12章练习与习题答案 <doc格式> (下载) 《计算机数学基础(下)》第11章... -)..." computer math, "Numerical Analysis Exercises outline (12-14)
1236
- )...《计算机数学基础》数值分析期末复习提纲(12-14章) <doc格式> (下载) 《计算机数学基础》...《计算机数学基础(下)》第12章练习与习题答案 《计算机数学基础(下)》第11章... -)..." computer math, "Numerical Analysis Exercises outline (12-14)
1478
- )...《计算机数学基础》 《计算机数学基础》...《计算机数学基础(下)》第12章练习与习题答案 <doc格式> (下载) 《计算机数学基础(下)》第11章... -)..." computer math, "" Computer mathematical foundations of computer math "..." (2) "Chapter 12 practice exercises and answers
sxjc23
- 计算机数学基础》数值分析期末复习提纲(12-14章) <doc格式> (下载) 《计算机数学基础》...《计算机数学基础(下)》第12章练习与习题答案 <doc格式> (下载) 《计算机数学基础(下)》第11章... -computer math, "Numerical Analysis Exercises outline (12-14)
sxjc24
- 计算机数学基础》数值分析期末复习提纲(12-14章) <doc格式> (下载) 《计算机数学基础》...《计算机数学基础(下)》第12章练习与习题答案 <doc格式> (下载) 《计算机数学基础(下)》第11章... -computer math, "Numerical Analysis Exercises outline (12-14)
LU算法
- <计算方法>LU算法过程及程序,经过调试可以运行
VBStats
- <VB数理统计实用算法>书中的算法源程序
PolyFitSingle
- //=== === === === === === === = //函数说明 //函数名称:PolyFit //函数功能:最小二乘法曲线拟合 //使用方法:double *x ---- 存放n个数据点的X坐标 // double *y ---- 存放n个数据点的Y坐标 // int n -------- 给定数据点个数 // double *a ---- 返回m-1次拟合多项式的m个系数 // int m -------- 拟合多项式的项数,即拟合多项式的
TriSpline
- 三次样条插值程序。编译运行本程序后,程序会弹出窗口及问句:“input the number of intervals:”,输入插值的次数即可,程序将得到的次数保存在变量int n中。如果输入的插值次数正确(n>=2),程序会显示下一语句:\"input the value of the variable:\",此时输入插值点即可,程序将得到的插值点保存在变量double v中。若插值点正确(v>=0&&v<=6),则程序将输出插值结果。-cubic spline interp
CodecWizard
- 多种编解码的小程序,支持bin<->hex,bin<->c array,url和utf7即base64-various codecs of small programs to support binlt; - Gt; Hex, binlt; - Gt; C array, url and utf7 that base64
Sherwood
- Sherwood算法消除最坏实例,以达到对任何实例都能有好的性能的效果 文件: rd_list.c --> create a random sequence of n integers not equal to each other list.c --> create a descending sequence of n integers not equal to each other sherwood.c --> 就是该算法,静态链表的长度默
VisualQueen
- n皇后问题求解(8<=n<=1000) a) 皇后个数的设定 在指定文本框内输入皇后个数即可,注意: 皇后个数在8和1000 之间(包括8和1000) b) 求解 点击<Solve>按钮即可进行求解. c) 求解过程显示 在标有Total Collision的静态文本框中将输出当前棋盘上的皇后总冲突数. 当冲突数降到0时,求解完毕. d) 求解结果显示 程序可以图形化显示8<=n<=50的皇后求解结果. e) 退出
ch1
- A Programme About Paralell Compulation>Maybe can help you Thanks
CurveFit_Poly
- 多项式曲线拟合 任意介数 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as a template class, using vector<FloatType> parameters. Added a method to handle some EMathError exceptions. If do NOT want to use thi
RBSfan
- Problem D:合唱队形 Time Limit:1000MS Memory Limit:65536K Total Submit:1237 Accepted:437 Language: not limited Descr iption N位同学站成一排,音乐老师要请其中的(N-K)位同学出列,使得剩下的K位同学排成合唱队形。 合唱队形是指这样的一种队形:设K位同学从左到右依次编号为1,2…,K,他们的身高分别为T1,T2,…,T
matlabmatrix
- 1) Write a function reverse(A) which takes a matrix A of arbitrary dimensions as input and returns a matrix B consisting of the columns of A in reverse order. Thus for example, if A = 1 2 3 then B = 3 2 1 4 5 6 6 5 4 7 8 9 9 8 7 Writ
GT(guotao)_C++_class
- 一个郭涛算法类,可以只做简单的修改就能求解其他函数优化问题。
000
- 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) > t=t+x(i)*x(i) > end > c=sqrt(t/(m*n-1)) function c=myfunction(x) [m,n]=size(x) t=0 for i=1:m for j=1:n t=
111
- 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) > t=t+x(i)*x(i) > end > c=sqrt(t/(m*n-1)) function c=myfunction(x) [m,n]=size(x) t=0 for i=1:m for j=1:n t=