搜索资源列表
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算法过程及程序,经过调试可以运行
FEX
- 用java做的平面珩架结构有限元分析软件。 基本性能如下:结点数<500,单元数<1000,(具体情况视内存大小而定)在一般的微机 上,算一百节点以下的结构,基本上不用等待。-do with the plane Heng Structure finite element analysis software. The basic properties as follows : nodes lt; 500, Number of units lt; 1000, (depending
VBStats
- <VB数理统计实用算法>书中的算法源程序
curvefit_C_edition
- c语言版的多项式曲线拟合。 用最小二乘法进行曲线拟合. 用p-1 次多项式进行拟合,p<= 10 x,y 的第0个域x[0],y[0],没有用,有效数据从x[1],y[1] 开始 nNodeNum,有效数据节点的个数。 b,为输出的多项式系数,b[i] 为b[i-1]次项。b[0],没有用。 b,有10个元素ok。-c language version of the polynomial curve fitting. Using least-squares met
PolyFitSingle
- //=== === === === === === === = //函数说明 //函数名称:PolyFit //函数功能:最小二乘法曲线拟合 //使用方法:double *x ---- 存放n个数据点的X坐标 // double *y ---- 存放n个数据点的Y坐标 // int n -------- 给定数据点个数 // double *a ---- 返回m-1次拟合多项式的m个系数 // int m -------- 拟合多项式的项数,即拟合多项式的
youquchengxu
- 有趣的程序: 1。已知n和m,m个正整数相加等于n(m<=n),列出这m个数. 2。输入任意正整数n,计算n!(n可取到一亿) 3。求100以内的所有由三个素数构成的等差素数组-interesting : 1. Known n and m, m is integer equal to the sum of n (m
EULERDemo
- /* * EULER S ALGORITHM 5.1 * * TO APPROXIMATE THE SOLUTION OF THE INITIAL VALUE PROBLEM: * Y = F(T,Y), A<=T<=B, Y(A) = ALPHA, * AT N+1 EQUALLY SPACED POINTS IN THE INTERVAL [A,B]. * * INPUT: ENDPOINTS A,B INITIAL CONDITION ALPHA I
matlabcodesofIterativeMethodsforLinearandNonlinear
- This folder contains all the codes based on Matlab Language for the book <《Iterative Methods for Linear and Nonlinear Equations》, and there are totally 21 M files, which can solve most of linear and nonlinear equations problems. -This folder conta
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
fft-by_skyline
- 这是一个我自己写的FFT的c程序,可以计算n(<4096)个点(可以是虚数)的结果 -This is one I wrote it myself FFT c procedures can be calculated n (
Matching-1
- 给定整数n,产生所有[2n]上的匹配(matching) //将其视为一个所有块大小均为2的集合分拆 //输出格式为 a1 a2 - b1 b2 - c1 c2 - ... //满足a1<a2, b1<b2, ... //且 a1 < b1 < c1 <-given integer n, have all [2n] on the matching (matching) / / will be considered as an all pieces a
Matching-2
- //给定整数n,产生所有[2n]上的匹配(matching) //将其视为一个所有块大小均为2的集合分拆 //以a_i表示其第i个元素所在的集合号 //输出格式为 a1 a2 a3 ... //满足 //a_{i+1} <= max { a1,a2,...a_i } + 1 -/ / a given integer n, have all [2n] on the matching (matching) / / will be considered as an all
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
featp.rar
- <<有限单元法>>,王勖成编,书后附录源代码, featp,可以求解平面应力弹性问题,平面应变,轴对称的实体单元和MINDLIN板问题,仅仅提供其求解器代码,前后处理没有,因为这50多页已经够难抄写的了.已经通过CVF6.5的编译,但是结果对否,未验证过.,Finite element method, written by Wang Xucheng, source code in appendix, FEATP, This program can solve the e