搜索资源列表
qpso
- QPSO算法的MATLAB源码,给需要的人,希望斑竹给加点技术分-MATLAB algorithm QPSO source, give the necessary people, hoping to add points Chiloscyllium technical sub-
Useful_matlab_codes
- The False-Position method to solve a linear equation The Bisection method to solve linear equation Jacobi Iteration on a 3D plane-The False-Position method to solve a linear equation The Bisection method to solve linear equation Jacobi Iteration on
iterative
- This program contains the iterative methods of finding solutions of the equation f(x)=0, which are also known as the roots of the equation f(x)=0 The methods are: -bisection -false position -newton raphson -secant
ALG025
- 解方程,给出一个连续函数接f(x)=0的值,前提是给两个附近的值,且符号相反 - METHOD OF FALSE POSITION ALGORITHM 2.5 To find a solution to f(x) = 0 given the continuous function f on the interval [p0,p1], where f(p0) and f(p1) have opposite signs: INPUT
ALGO2-3
- Algo2-3.c C program for implementing Algorithm 2.3 Algorithm translated to C by: Dr. Norman Fahrer IBM and Macintosh verification by: Daniel Mathews NUMERICAL METHODS: C Programs, (c) John H. Mathews 1995 To accompany the text: NUM
false_pos_aitken
- method of false position with Aitken s D2-method
falspos
- root finding by false position
falspos
- Demonstration of Root Finding using False Position
Rapson_numerical
- In this experiment our equation is f(x0)=x^3-3x-1.We have to find the real root of this equation between 1 and 2.The programme has been shown in the"new_rap" We have done the comparison between the Newton Rapson method the false position method
false
- false position code in matlab
root
- Chapter 2. The Solution of Nonlinear Equations f(x) = 0 Algorithm 2.1 Fixed Point Iteration Algorithm 2.2 Bisection Method Algorithm 2.3 False position or Regula Falsi Method Algorithm 2.4 Approximate Location of Roots Algorithm 2.5
matlab-code
- this archive contain 5 program in matlab bisection method false position method newton method lagrange interpolation a program to draw fourier series
solver.tar
- Calculates x such that ln(x) = x/5 using the method of false position and secant method. Reads the initial guesses, required tolerance and allows the user to choose between the method of false position and the secant method.
SimpleTracker-
- Simple Tracker *Tracking* , or particle linking, consist in re-building the trajectories of one or several particles as they move along time. Their position is reported at each frame, but their identity is yet unknown: we do not know wh
NRFP
- Newton Raphson False Position for a set of nonlinear equations
algorithm
- An algorithm for the False Position method showing convergence-An algorithm for the False Position method showing convergence
SimpleTracker
- 颗粒跟踪’建立一个或多个颗粒随时间变化而形成的轨迹。跟踪算法记录下颗粒在每帧数据中的位置。本算法的亮点是间断处理。间断是指一个颗粒在一帧中出现而在下一帧中消失。如果不做处理,当该颗粒在后续帧中重现时,将产生新的虚假跟踪。-Particle tracking to create one or a plurality of particles with time and the formation of the track. Particle tracking algorithm recorded
false_position
- To find a root of non-linear equation using false position
CPP
- 10.编写一个程序,从键盘输入一批学生的成绩信息,每个学生的成绩信息包括:学号、姓名以及8门课的成绩。然后按照平均成绩由高到低顺序输出学生的学号、姓名以及平均成绩。 11.把在链表中插入一个新结点的操作写成一个函数: bool insert(Node *&h,int a,int pos) 其中,h为表头指针,a为要插入的结点的值,pos(≥0)表示插入位置。当pos为0时表示在表头插入;否则,表示在第pos个结点的后面插入。操作成功返回true,否则返回false。 12.把在