搜索资源列表
-
0下载:
Lagrange插值函数lagr1(x0,y0,x)的matlab源程序:
function y=lagr1(x0,y0,x)
n=length(x0) m=length(x)
for i=1:m
z=x(i)
-Lagrange interpolation function lagr1 (x0, y0, x) Matlab source : lagr1 function y = (x0, y0, x) n = length (x0) m = length (x) for
-
-
0下载:
1.n个节点分段Lagrange插值多项式;
2.使用格式y=lagrange(x0,y0,x,k);
3.输入项x0为n维插值节点向量,y0为n维被插函数值向量;
4.x为m维插值点向量,k为分段插值多项式次数,不超过3,缺省为k=1;
5.输出y为插值点x处的函数值;- 1.n a sub-node Lagrange interpolation polynomial 2. The use of the format y = lagrange (x0, y0,
-
-
1下载:
它包含了数据拟合、interp1 - 一元函数插值、 spline - 样条插值、polyfit - 多项式插值或拟合、curvefit - 曲线拟合、caspe - 各种边界条件的样条插值、casps - 样条拟合(没有)、interp2 - 二元函数插值、griddata - 不规则数据的二元函数插值、interp - 不单调节点插值和lagrange - 拉格朗日插值法的代码.-It contains code of data fitting, interp1- unary functio
-
-
0下载:
用matlab实现lagrange和Newton插值方法-Achieved with matlab lagrange interpolation and Newton
-
-
0下载:
使用matlab对插值方法进行编程计算 包括艾米特 拉格朗日等插值法-Matlab programming calculation including Amit Lagrange interpolation interpolation method
-
-
1下载:
matlab的追赶法,追赶法是适用于三对角矩阵的线性方程组求解的方法,并不适用于其他类型矩阵,及matlab的gauss求解方程方法,牛顿插值法,拉格朗日插值法。-matlab chasing method chasing method is applicable to the tridiagonal matrix method for solving linear equations, does not apply to other types of matrix and matlab gau
-
-
0下载:
matlab创建N次拉格朗日插值函数的编译-Create N times matlab compiler Lagrange interpolation function
-
-
0下载:
拉格朗日插值法matlab源程序,具有通用性和可扩展性。-Lagrange interpolation matlab source, has the versatility and scalability.
-
-
1下载:
利用MATLAB实现克里金插值和重心拉格朗日插值-Using MATLAB and center of gravity to achieve Kriging interpolation Lagrange
-
-
0下载:
使用了编程语言:C#,编程工具:Visual Studio 2010实现了对数值计算中Steffensen,Muller(抛物线)非线性方程数值求解;Gauss线性方程组求解;Lagrange,Newton,三次样条插值法数值逼近的winform 软件开发,取代了Matlab方法,便于方法的应用和推广。-Use a programming language: C#, programming tools: Visual Studio 2010 realization of the numerica
-
-
0下载:
matlab 源码,实现欧拉插值,牛顿插值,拉格朗日插值等算法。-matlab source code to achieve Euler interpolation, Newton interpolation, Lagrange interpolation algorithm.
-
-
0下载:
matlab编程的拉格朗日插值 龙格现象 matlab-matlab programming Lagrange interpolation Runge phenomenon matlab
-
-
0下载:
拉格朗日插值多项式用matlab实现,目前网上的都是用多层for循环
这没有利用到矩阵的强大功能,matlab就是以矩阵为基础建立的科学软件。对矩阵的运算非常适合。提高运算效率。(The Lagrange interpolation polynomial is realized by MATLAB, and at present, the network is all multilayered for cycle
This does not take advantage of the pow
-
-
0下载:
hermite插值,Newton插值,lagrange插值是三种常用的数值插值方法,本文件采用MATLAB对三种插值算法进行了实现。(hermite interpolation)
-
-
0下载:
使用matlab编写了拉格朗日插值算法的函数,里面有题目,可直接运行计算得到结果。(The function of Lagrange interpolation algorithm is written by MATLAB. There are questions in it, which can be directly run and calculated and get the result.)
-
-
1下载:
lagrange插值 在数值分析中,拉格朗日插值法是以法国十八世纪数学家约瑟夫·拉格朗日命名的一种多项式插值方法。许多实际问题中都用函数来表示某种内在联系或规律,而不少函数都只能通过实验和观测来了解。如对实践中的某个物理量进行观测,在若干个不同的地方得到相应的观测值,拉格朗日插值法可以找到一个多项式,其恰好在各个观测的点取到观测到的值。(interpolation In numerical analysis, the Lagrange interpolation method is a p
-