-
mtlab中INV()求逆函数的C++代码
资源描述在matlab中,inv()函数一一个自带十分快速的求逆的算法,但是在matlab中是不公开的,为了方便,本程序将INV()函数做出C++代码方便用户的使用。
- 2023-06-22 13:50:03下载
- 积分:1
-
Shortest Path
资源描述Write a program to find the weighted shortest distances from any vertex to a given source vertex in a digraph. If there is more than one minimum path from v to w, a path with the fewest number of edges is chosen. It is guaranteed that all the weights are positive and such a path is unique for any vertex.
- 2022-08-26 06:49:00下载
- 积分:1
-
时间差定位法
TDOA算法是对TOA算法的改进,他不是直接利用信号到达时间,而是用多个基站接收到信号的时间差来确定移动台位置,与TOA算法相比他不需要加入专门的时间戳,定位精度也有所提高。TDOA值的获取一般有2种形式:第1种形式是利用移动台到达2个基站的时间TOA,取其差值来获得,这时仍需要基站时间的严格同步,但是当两基站间移动信道传输特性相似时,可减少由多径效应带来的误差
- 2022-05-07 22:48:42下载
- 积分:1
-
mfc写的五子棋源码
通过MFC写的五子棋源码,有兴趣的欢迎交流 对算法和界面,相关源码应有尽有 哈哈,还等什么,快下载把 嗯。。。。
- 2022-12-03 23:55:03下载
- 积分:1
-
Multi
多维傅里叶变换,二维DFT快速算法,共分五部--四:三维复序列3D-DFT快速算法-Multi-dimensional Fourier transform, fast algorithm for two-dimensional DFT is divided into 5- 4: Three-dimensional complex sequence of 3D-DFT Fast Algorithm
- 2023-07-04 05:05:03下载
- 积分:1
-
天然气管道连接问题原程序,一百个用户,其中有四个无效用户,将其它96个有效用户连接成一个树形网络,用kruskal算法实现...
天然气管道连接问题原程序,一百个用户,其中有四个无效用户,将其它96个有效用户连接成一个树形网络,用kruskal算法实现-Natural gas pipeline to connect the issue of the original procedure, 100 users, which has four invalid users, will the other 96 valid user to connect into a tree network, using Kruskal Algorithm
- 2023-05-07 08:15:03下载
- 积分:1
-
求解无约束最优化问题的各种算法集合!
求解无约束最优化问题的各种算法集合!-solving unconstrained optimization algorithm for the pool!
- 2023-08-01 20:45:03下载
- 积分:1
-
数值分析算法:非线性方程的求解,插值,表面…
数值分析算法:求解非线性方程组,插值,曲面拟合,得近似表达式-Numerical analysis algorithms: solving nonlinear equations, interpolation, surface fitting, very similar to the expression
- 2022-03-21 01:09:20下载
- 积分:1
-
把CString格式转化为Char
void CRSLAIDoc::CString2Char(CString TempCString,char ch[])
{
int i;
char *tmpch;
int wLen=WideCharToMultiByte(CP_OEMCP,0,TempCString,-1,NULL,0,NULL,NULL);
tmpch=new char[wLen+1];
WideCharToMultiByte(CP_OEMCP,0,TempCString,-1,tmpch,wLen,NULL,NULL);
for(i=0;tmpch[i]!="
- 2023-04-25 23:50:03下载
- 积分:1
-
粒子滤波入门程序
粒子滤波的入门程序,一维的粒子滤波算法,误差为定值,含有丰富的注释,适合新手入门
- 2023-04-10 22:35:04下载
- 积分:1