-
陀螺仪 加速度计 卡尔曼
基于卡尔曼滤波的陀螺仪与加速度计数据融合,采用C++编写将其封装成类,可用在角度测量应用。
- 2022-03-17 09:59:47下载
- 积分:1
-
快速排序算法,很好用,用c++编,拷贝在文本里,大家可以参考参考哦....
快速排序算法,很好用,用c++编,拷贝在文本里,大家可以参考参考哦.-quick sort algorithm is useful, with c writers, copy in the text, one can refer to Reference oh.
- 2022-04-26 15:23:24下载
- 积分:1
-
我的一个MATLAB牛顿插值程序
我还很菜 请多多指教 批准加入 谢谢!...
我的一个MATLAB牛顿插值程序
我还很菜 请多多指教 批准加入 谢谢!-a MATLAB Newton interpolation procedures, I also ask you to enlighten vegetables approval Thank you!
- 2022-08-23 03:36:47下载
- 积分:1
-
ACM1087 realize the title of the request, the document provided in the form of t...
实现了ACM1087题中的要求,以文件的方式提供测试数据。-ACM1087 realize the title of the request, the document provided in the form of test data.
- 2022-06-27 12:01:22下载
- 积分:1
-
蚁群算法解决TSP旅游商问题
function [R_best,L_best,L_ave,Shortest_Route,Shortest_Length]=ACATSP(C,NC_max,m,Alpha,Beta,Rho,Q)%%-------------------------------------------------------------------------%% 主要符号说明%% C n个城市的坐标,n×2的矩阵%% NC_max 最大迭代次数%% m 蚂蚁个数%% Alpha 表征信息素重要程度的参数%% Beta 表征启发式因子重要程度的参数%% Rho 信息素蒸发系数%% Q 信息素增加强度系数%% R_best 各代最佳路线%% L_best 各代最佳路线的长度%%========================================================================= %%第一步:变量初始化n=size(C,1);%n表示问题的规模(城市个数)D=zeros(n,n);%D表示完全图的赋权邻接矩阵for i=1:nfor j=1:nif i~=jD(i,j)=((C(i,1)-C(j,1))^2+(C(i,2)-C(j,2))^2)^0.5;elseD(i,j)=eps; %i=j时不计算,应该为0,但后面的启发因子要取倒数,用eps(浮点相对精度)表示endD(j,i)=D(i,j); %对称矩阵endend%{1.C就是城市坐标 x y城市1 0
- 2022-08-25 13:59:52下载
- 积分:1
-
用差分方法求解沃尔泰拉方程,此处为一个变元的方程,由于该方程同时含有微分和积分,一般求解有一定的困难。...
用差分方法求解沃尔泰拉方程,此处为一个变元的方程,由于该方程同时含有微分和积分,一般求解有一定的困难。-use of the finite difference method for Volterra equation here as a variable element of the equation, As the same time contain differential equations and integral, the general solution is definitely difficult.
- 2022-11-10 09:55:02下载
- 积分:1
-
CKNN 用于多示例学习
CKNN Using the Citation KNN algorithm[1] to get the labels for bags in testBags, where minmum Hausdorff distance is used to measure the distances between bags
% CKNN takes,
% PBags - an Mx1 cell array where the jth instance of ith positive bag is stored in PBags{i}(j,:)
% NBags - an Nx1 cell array where the jth instance of ith negative bag is stored in NBags{i}(j,:)
% testBags - a Kx1 cell array where the jth instance of ith test bag is stored in testBags{i}(j,:)
% Refs - the number of referecnes for each test bag
% Citers - the number of citers for each test bag
% &n
- 2022-03-01 19:43:00下载
- 积分:1
-
Apriori 算法
在 java 应用程序,开发了这个程序。Apriori 算法用来找出频繁项集和支持和最低限度的信心
- 2023-04-14 20:35:03下载
- 积分:1
-
vb CRC校验源码
"CRC算法函数
Public Function CRC(STR1 As String) As String
Dim CRCREG As Long
Dim MVAL As Long
Dim R As Integer
Dim T As Integer
CRCREG = 65535
For R = 1 To Len(STR1) Step 2
MVAL = Val("&H" + Mid(STR1, R, 2))
CRCREG = CRCREG Xor MVAL
CRCREG = C
- 2022-02-10 03:39:12下载
- 积分:1
-
get the shortest path between two node with arithmetic of DIJ and floyd
利用迪杰斯特拉算法和弗洛伊德算法计算两节点之间的最短路径-get the shortest path between two node with arithmetic of DIJ and floyd
- 2023-01-02 03:50:07下载
- 积分:1