-
意味着在C #滤波器
应用背景关键技术均值滤波的想法是简单的替换每个像素值与平均图像(`平均”)邻国的价值,包括本身。这消除了其像素值的影响具代表性的环境。像其他部分是围绕一个核心,这代表形状和邻域大小进行采样时计算平均。
- 2022-08-21 13:48:45下载
- 积分:1
-
这是一个简单的演示如何评价文本的数学表达式
This a simple demo of how to evaluate mathematical expressions in text
format, including provision for variables and functions. The code consists of
three simple classes: 1) Calc - which does the main calculations, 2) Stack -
which is used to push and pop intermediate operators and numbers and 3)
Symbol Table. The symbol table is a collection of calc symbols, a type structure
consisting of various elements, including the expression name, function name,
and the final value of the expression The evaluation procedure is done in three
steps: 1) simplify the expression by removing all the elements within () and
storing them in subexpressions within the symbol table. 2) Each of these sub
expressions are then converted to RPN format (Reverse polar notation) and
evaluated 3) Finally, the main expression is converted to RPN and evaluated-This is a simple demo of how to evaluate mathematical expressions in text
format, including provision for variables and functi
- 2022-02-20 06:26:41下载
- 积分:1
-
小波变换所有常见例程,vc++下调试通过。适合科研人员和工程应用人员...
小波变换所有常见例程,vc++下调试通过。适合科研人员和工程应用人员-Wavelet transform of all common routines, vc++ Adopted under the debugger. Suitable for the application of scientific research personnel and engineering staff
- 2023-06-09 04:30:03下载
- 积分:1
-
一个绝好的数学公式计算类,支持多种数学公式的快速计算
一个绝好的数学公式计算类,支持多种数学公式的快速计算-a wonderful class of mathmatica fomula computing,supporting many formulas computing
- 2022-01-30 18:24:11下载
- 积分:1
-
奇异值分解
奇异值分解的C++程序。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
- 2022-07-04 09:41:55下载
- 积分:1
-
独立的AVL的存储介质是在大量的AVL TRE现在可用…
独立于AVL库的存储媒体
虽现在有不少可用的AVL树库,但几乎都是工作在RAM中,当数据量小的时候,这种方式可行,但当树结构变大时时,读取和存储的时间就会大大变长,任务效率大大降低。能不能直接用磁盘进行树的操作呢?若可以,就不必进行频繁的磁盘内存交换了,本程序就实现了这个功能。实际上,这个程序无论是磁盘还是内存,都很好用。-independent of the AVL storage media is now available in a number of the AVL tree, But almost all work in the RAM, when a small amount of data, this approach feasible, but big tree structure constant, read and storage time will be much longer and the task efficiency has been greatly reduced. Can directly use the disk tree operation? If so, there is no need for frequent exchange of disk memory, the process to achieve this function. In fact, this procedure is disk or memory, are very handy.
- 2022-04-09 22:19:08下载
- 积分:1
-
Learnin Mathematics with the ABACUS Activity
Learnin Mathematics with the ABACUS Activity-book
part 6
- 2022-05-05 04:37:03下载
- 积分:1
-
数据结构 典型的题目
题目:
假设有A,B,C,D,E五个高等院校进行田径对抗赛,各院校的单项成绩均已存入计算机,并构成一
张表,表中每一行的形式为:
项目名称 性别 校名 成绩 得分
编写算法,处理上述表格,以统计各院校的男、女总分和团体总分,并输出。
- 2022-02-02 18:42:53下载
- 积分:1
-
(1)Msls分三步对系统和噪声模型进行辨识,采用脉冲序列作为辅助系统模型,用 计算输出数据 ;用原输出数据 计算 ,用递推最小二乘方法分别对系统参数和模型参数...
(1)Msls分三步对系统和噪声模型进行辨识,采用脉冲序列作为辅助系统模型,用 计算输出数据 ;用原输出数据 计算 ,用递推最小二乘方法分别对系统参数和模型参数进行估计。
(2)M.dat,wnoise1.dat分别为M和白噪声序列。Wnoise1.dat的长度为700,wnoise2.dat的长度为1000。Msls6.c为N=600的程序,Msls8.c为N=800的程序。
(3)程序运行后,生成的两个h文件为产生的脉冲响应函数。Msls6.dat为msls6.c的参数估计结果,msls8.dat为msls8.c的参数辨识结果。分别如下所示:
a1=0.906331 a2=0.160170 a3=0.025525 b1=0.704475 b2=-1.497551 c1=1.009114 c2=0.446890
a1=0.906347 a2=0.159066 a3=0.024650 b1=0.700720 b2=-1.493327 c1=1.008787 c2=0.425714
(4)由数据结果可以看出,采用msls辨识方法估计精度要比els法的估计精度差一些。尤其是噪声参数c2的估计误差不在1%以内。这是由于msls法计算上较为简便,计算上的简化就带来了估计精度上的误差。由N=600和N=800相比较,可以看出当N增大时,误差有所减小。理论上当N趋于无穷时, 。
-err
- 2022-04-16 04:46:15下载
- 积分:1
-
Gauss
高斯-赛德尔迭代求解线性方程组.很实用的数学计算软件-Gauss- Seidel method for solving linear equations. Very useful mathematical calculation software
- 2022-07-12 04:37:59下载
- 积分:1