-
ANC算法源码
文件包含多种自适应滤波控制算法,能帮助初学者快速学习ANC算法。
- 2022-08-03 06:28:05下载
- 积分:1
-
拟合小程序,可以看看!
拟合小程序,可以看看!-small fitting procedures, we can!
- 2022-06-13 12:45:59下载
- 积分:1
-
cinematic model of a robot with five degree
cinematic model of a robot with five degree
- 2022-06-30 11:53:40下载
- 积分:1
-
非常简便,代码短且稳健性强
非常简便,代码短且稳健性强-very simple, but short code stability-
- 2022-04-26 08:45:45下载
- 积分:1
-
Implementations of different methods of sorting:
BinaryInsertions.pas
Bub...
Implementations of different methods of sorting:
BinaryInsertions.pas
BubbleSort.pas
HeapSort.pas
InsertionBorder.pas
InsertionSort.pas
modifbubble.pas
qsort.pas
quicksort.pas
selection.pas
Shaker.pas
shell.pas
- 2023-06-02 19:15:03下载
- 积分:1
-
使用PIC单片机开发的直流伺服(含源码和上位机)
直流伺服(含源码和上位机),本人测试使用过,真实有效。
- 2022-09-19 18:35:03下载
- 积分:1
-
初学者实现矩阵乘法,觉得矩阵乘法简单但很实用,写的不是很高效,可以下载下来研究研究哦。...
初学者实现矩阵乘法,觉得矩阵乘法简单但很实用,写的不是很高效,可以下载下来研究研究哦。-beginners achieve matrix multiplication, a simple matrix multiplication think it is practical and writing is not very efficient and can be downloaded from studies oh.
- 2022-03-13 03:26:40下载
- 积分:1
-
matrix的一些常用操作
一些常用的矩阵操作,包括常用的矩阵加法,乘法,strassen算法,还有位并行操作预留的算法。包括为wingoth算法预留的矩阵乘法,为了分块矩阵预留的算法等等。
- 2022-04-19 02:11:14下载
- 积分:1
-
用C++语言实现的基于小波分析的源代码,实现了小波分析的诸多算法...
用C++语言实现的基于小波分析的源代码,实现了小波分析的诸多算法-With C++ Language based on wavelet analysis of the source code, the realization of the wavelet analysis of many algorithms
- 2022-11-08 02:10:04下载
- 积分:1
-
C#实现中值平均数滤波算法
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
/// 中位平均值滤波算法
///
public class DLMidPerFilter
{
private MHBetterList mOrignList = new MHBetterList(); //原始数组
private MHBetterList mFilterList = new MHBetterList(); //过滤数组
private float mCurrentValue; //记录当前值
private int mResetNum = 0; //均值重置个数
public bool mIfReset = false; //判断是否开始均值重置
///
/// 过滤算法
///
/// 新输入的值
///
- 2023-05-07 23:20:03下载
- 积分:1