-
Zju2112 Dynamic Rankings
- 2023-03-30 15:35:03下载
- 积分:1
-
快速DCT变换 迭代算法
快速DCT变换 迭代算法- Fast DCT transformation iteration algorithm
- 2022-01-26 07:08:19下载
- 积分:1
-
矩阵运算
// 矩阵乘法: C=AB, A[m×v], B[v×n], C[m×n] ... for row-major matrices
// 允许A,B,C 带入相同参数.
double* matr_x(double*C, const double*Ao, const double*Bo, const int m,const int v, const int n){
if(!Ao || !Bo) return 0; if(!C) C=new double[m*n];
double* A=new double[m*v], * B=new double[v*n];
memcpy(A,Ao,m*v*sizeof(double)); memcpy(B,Bo,v*n*sizeof(double));
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-07 01:39:24下载
- 积分:1
-
大数C++程序,实现加减乘除等
超强大数代码,实现产生大数,大数之间的运算,超级强大~~~为各种加解密算法提供帮助!
- 2022-10-16 09:00:03下载
- 积分:1
-
Newton iterative method for solving this calculation method is commonly used in...
牛顿迭代法求根 这个也是计算方法中的常用计算程序 学过的人都知道的-Newton iterative method for solving this calculation method is commonly used in the calculation procedures learned in the people know that the
- 2022-09-27 06:00:03下载
- 积分:1
-
实现的是对经纬度的分秒转换为double类型的坐标
实现的是对经纬度的分秒转换为double类型的坐标-Realization of the minutes and seconds of latitude and longitude is converted to double types of coordinates
- 2022-06-30 07:52:31下载
- 积分:1
-
基于Riccati方程的周期轨道的话
周期轨道可以出现在常系数代数Riccati方程中。如果不知道它们,稳态解可能永远不会收敛。
- 2022-01-31 03:59:28下载
- 积分:1
-
图像处理中的基本运算
数字图像获取、处理和实践——很多图像处理有用的源代码,图像增强(均值滤波3*3,5*5,中值滤波),边缘检测(sobel算子,拉普拉斯算子,reborts算子),图像分割(固定阈值分割,最大类间方差阈值分割)等
- 2022-05-19 03:02:12下载
- 积分:1
-
一个很有用的贝叶斯辨识的MATLAB程序,结果会很流畅的图形输出....
一个很有用的贝叶斯辨识的MATLAB程序,结果会很流畅的图形输出.-a very useful identification of MATLAB Bayesian procedures, and results will be very smooth graphics output.
- 2022-04-28 12:47:20下载
- 积分:1
-
PID算法
PID算法,名字没用PID,电机PID算法。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
- 2023-05-06 15:15:02下载
- 积分:1