-
在另一个教程,初学者eyeweb
ANOTHER TUTORIAL FOR BEGINNERS IN EYEWEB
- 2022-05-13 14:31:19下载
- 积分:1
-
Some RFID article, divided into 5 files This is the first 5, in the hope that th...
一些RFID的文章,分为5档这是前5档,希望对该领域的研究有帮助
- 2023-03-15 11:55:04下载
- 积分:1
-
10种软件滤波方法的示例程序
1、限副滤波
/* A值可根据实际情况调整
value为有效值,new_value为当前采样值
滤波程序返...
10种软件滤波方法的示例程序
1、限副滤波
/* A值可根据实际情况调整
value为有效值,new_value为当前采样值
滤波程序返回有效的实际值 */
#define A 10
char value
char filter()
{
char new_value
new_value = get_ad()
if ( ( new_value - value > A ) || ( value - new_value > A )
return value
return new_value
}
2、中位值滤波法
/* N值可根据实际情况调整
排序采用冒泡法*/-10 kinds of software filtering method one example of the procedure, limit the Deputy filter/* A value can be adjusted according to the actual value for the RMS, new_value filter for the current sampling procedures for the effective return of the actual value* /# define A 10 char value char filter () (char new_value new_value = get_ad () if ((new_value- value> A) | | (value- new_value> A) return value return new_value ) 2, the median filtering method/* N values can be adjust the actual situation in the use of bubble sort method* /
- 2023-08-29 16:45:03下载
- 积分:1
-
This is on the image modulation transfer function MTF calculated an excellent ar...
这是关于图像调制传递函数MTF计算的一篇优秀文章,可以处理卫星图像,提高图像清晰度-This is on the image modulation transfer function MTF calculated an excellent article, you can deal with satellite imagery, improve image clarity
- 2022-09-10 04:55:03下载
- 积分:1
-
这是一个java的例子,它是concernging数组实例,给出了一些不同类型的佛…
this a java example,it is concernging array instance,give some different type form-this a java example, it is concernging array instance, give some different type form
- 2022-05-26 17:35:27下载
- 积分:1
-
坚硬耐磨
hard wear-hard wear...............
- 2022-02-03 06:18:26下载
- 积分:1
-
这是一个经典的益智游戏,移动和旋转,很有意思…
这是一款经典的益智游戏,移动,旋转,非常有趣。。。
- 2022-01-25 21:59:38下载
- 积分:1
-
几个常用的算法,包括消元,迭代,三角分解等
几个常用的算法,包括消元,迭代,三角分解等-several commonly used algorithms, including the elimination, iterative, triangular decomposition, etc.
- 2022-07-09 05:44:34下载
- 积分:1
-
VFP模拟试题,可以在等级考试前做冲刺训练!我们共同学习,共同进步!...
VFP模拟试题,可以在等级考试前做冲刺训练!我们共同学习,共同进步!-VFP simulation questions, you can make in the grading of sprint training before the exam! Our common learning and common progress!
- 2022-03-16 22:26:47下载
- 积分:1
-
* 用改进的欧拉方法求解初值问题,其中一阶微分方程未y =f(x,y)
* 初始条件为x=x[0]时,y=y[0].
* 输入: f...
* 用改进的欧拉方法求解初值问题,其中一阶微分方程未y =f(x,y)
* 初始条件为x=x[0]时,y=y[0].
* 输入: f--函数f(x,y)的指针
* x--自变量离散值数组(其中x[0]为初始条件)
* y--对应于自变量离散值的函数值数组(其中y[0]为初始条件)
* h--计算步长
* n--步数
* 输出: x为说求解的自变量离散值数组
* y为所求解对应于自变量离散值的函数值数组
-* Improved Euler method to solve initial value problems, not an order differential equation y = f (x, y)* initial conditions for x = x [0], y = y [0].* Input : f-- function f (x, y)* x pointer-- from the array variable discrete values (x [0] for the initial conditions)* y-- corresponding to the variable discrete value of the function of the array (y [0] for the initial conditions)* h-- calculated step* n-- steps* output : Solving for x that the variable array* discrete values by solving y variables corresponding to the value of the discrete function arrays
- 2022-12-28 08:40:03下载
- 积分:1