搜索资源列表
SOR_迭代
- 重点内容是计算中的误差、函数方程求根、插值呆逼近、数值积分和微分、线性代数方程组解法、常微分方程初值问题的数值解法、数学软件。 -focus on the calculation of the error, solving functional equations, interpolation stayed approximation, numerical integration and differentiation, linear algebraic equations method,
Cprograms
- 中南大学C语言程序设计实习 1 实验一:C语言图形模式的设置 2 实习二:一元函数的图形绘制 3 实习三:二维图形的几何变换 4 实习四:非线性方程求根的二分法 5 实习五:非线性方程求根的牛顿法 6 实习六:数值积分的矩形法和梯形法 7 实习八:级数求和问题 8 实习九:曲线拟合 9 实习十一:解线性方程组的Gauss消元法 10 实习十四:解线性方程组的Jacobi迭代法 11 实习十六:空间曲面和曲线的绘
JavaexErciseSource
- 学习Java的过程中所做的联系的汇总 字符串的输入、字符串转化到整数、异常处理、流 最大公约数和最小公倍数 字符ASCII码的比较 一元二次方程根 求根公式 窗口类、按钮类、窗口中对象(如按钮)的布局、事件、绘图(Paint) 复选框、单选框、列表框、下拉选择框 菜单类、对话框类 绘图、绘图函数 按钮类、标签类 -learning through the process linked to the summary of the input string, the string
Delphi-ChangYongShuZhiSuanFa
- Delphi常用数值算法(源码) 这些算法将为千千万万非计算机专业的工程技术人员架起一座方便快捷的桥梁,并能缩短应用软件的编制周期,减少重复劳动,达到事业功倍的效果。 第1章线性代数方程组的解法 第2章插值 第3章数值积分 第4章特殊函数 第5章函数逼近 第6章特征值问题 第7章数据拟合 第8章方程求根和非线性方程组的解法 第9章函数的极值和最优化 第10章傅里叶变换谱方法 第11章数据的统计描述 第12章解常微分方程组 第13章偏
二分法求解非线性方程的根
- 实 验2 二分法求解非线性方程的根 计机系 041班 姓名:刘文杰 学号:200410714102 【实验内容】 1、方法介绍 (1)输入区间端点值a、b,步长h,及精度控制量ε1,若|f(a)|< ε1,则a为原方程的一个近似根,若|f(b)|< ε1,则b为原方程的一个近似根。 (2)以h为步长,将区间[a,b]分为两个等距的小区间[a,c],[c,b]。如果f(a)<0,f(c)>0,则根在[a,c]中,将区间[a,c]再分半,分点为
Matlab算法大全
- 非常全面的matlab算法,一共有14章,包括差值,函数逼近,矩阵特征值计算,数值微积分,方程求根,随机数生成,数据统计和分析等,全部都是算法的matlab原码实现,值得学习!
利用二分法求非线性方程的根
- 利用二分法求非线性方程的根,包括算法及Matlab函数文件。-The use of dichotomy roots of nonlinear equations, including the algorithm and Matlab function file.
yingyongshuzhifenxi.rar
- 本书包括绪论,插值法,函数逼近,解线性方程组的直接方法、迭代法,数值微分与数值积分,非线性方程求根,常微分方程数值解法,矩阵特征值与特征向量的计算以及附录和习题解答等。 ,This book includes introduction, interpolation, function approximation, solution of linear equations of the direct method, iterative method, numerical differentiati
6_12
- 数值方法对已知函数求根,应用二分法和弦截法实现数值计算,精度可控-Roots of the known function of numerical methods, applications implementation dichotomy numerical chord intercept method, the precision control
matlab-suanfadaquan
- 包括插值,函数逼近,矩阵特征值计算,数值微分,数值积分,方程求根, 非线性方程组求解, 解线性方程组的直接法,解线性方程组的迭代法,随机数生成等-Including interpolation, function approximation, eigenvalue computation, numerical differentiation, numerical integration, equation Root, non-linear equations to solve the direc
numerical
- 数值分析的实验文档和源程序 包含 1.样条插值 2.非线性方程求根 3.函数逼近和拟合 4.矩阵特征值计算 5.舍入误差分析 程序在相应文档中-Numerical Analysis of the experimental documentation and source code that contains 1. Spline Interpolation 2. Nonlinear equations Root 3. Function approximati
math
- 非线性方程求根的各种算法的比较, //求非线性方程的根 //程序中共给出了以下几种方法求非线性方程的根 // (1)二分法 (2)牛顿法 (3)普通迭代法 (4)斯蒂芬森迭代法 (5)弦截法 //程序中用到的函数为: f(x)=x^3-x-1 //其中:(1)普通迭代法用的迭代函数为:x=(x+1)^(1/3) // (2)斯蒂芬森迭代法用的迭代函数为:x=x^3-1-Root of all kinds of non-linear equation algorithm,/
12
- 牛顿迭代法求非线性方程的一个实根 /** 牛顿迭代法求方程的一个实根 牛顿公式:x(k 1) = x(k) - f(x(k)) / f (x(k)) 迭代函数:Ф(x) = x - f(x) / f (x) 属性:方程求根迭代法 此时的迭代函数必须保证X(k)有极限,即迭代收敛。-牛顿迭代法求非线性方程的一个实根 /** 牛顿迭代法求方程的一个实根 牛顿公式:x(k 1) = x(k)- f(x(k))/f (x
matlab
- 插值,函数逼近,矩阵特征值计算,数值微分,积分,方程求根,非线性方程求解,迭代,随机数生成,特殊函数,常微分方程,偏微分方程等常用的matlab程序。-Interpolation, function approximation, matrix eigenvalue calculation, numerical differentiation, integration, finding roots of equations, nonlinear equations, iterative, rand
SeekdefiniteintegralandtheRootsoffunctioniteration
- 求定积分函数和迭代求根函数,都是从网上下来之后,自己改了一些,能在vc中运行的。-Seek definite integral function and the Roots of function iteration, are down from the Internet after its changed some, running in vc.
ROOT
- 用于搜寻rayleigh波在多层介质中频散的解的求根函数。用matlab开发的。-this program developed for seeking the groupvelocity and phasevelocity according the period and the initial velocity。
p71_fzerotx
- 实现方程数值解法的函数是fzero,介绍其算法思想(The function of numerical solution of equation is fzero, and its algorithm idea is introduced)
exam3
- 调用数值求根函数来求解平面光波导中的导模(Can be solved by numerical o root function called planar optical waveguide in the mould)
GuassLegendreIntegral
- matlab实现高斯勒让德数值积分, 包含了勒让德求根函数Legendre_Roots,勒让德积分系数计算函数Legendre_Coef和高斯勒让德积分函数GuassLegendreIntegral(implement GaussLegendre Integral use matlab)
exam2
- 在matlab中调用数值求根函数对平面光导波的导模进行求解,并计算出导模中所对应的各参数。(In the MATLAB mode on the plane optical wave guide function calls for solving numerical roots, and calculate the parameters of the corresponding guide mode in the.)