-
Fast Fourier transform
快速傅里叶变换是一种计算离散傅里叶变换算法和它的逆。 傅里叶分析转换时间与频率,反之亦然 ;FFT 快速计算这种由 factorizingthe DFT 矩阵转换成一种产品稀疏的因素。
- 2023-08-24 17:15:03下载
- 积分:1
-
Length Unit Converter
你好?
- 2022-06-15 21:36:03下载
- 积分:1
-
用FDTD算法解决电磁场问题,c语言
用FDTD算法解决电磁场问题,c语言-using FDTD method for solving electromagnetic problems, c language
- 2022-04-29 06:25:09下载
- 积分:1
-
ZOJ ACM题目解答
这个是我在CSDN上下载的一个源码,这个比较有意义,很多东西可以自己一步步理解,有利于大家掌握ACM的一些技巧和解题思路,希望对大家有帮助
- 2023-04-24 07:30:04下载
- 积分:1
-
模运算MOD的相关运算
用于密码学最最基本的模运算中,或者是说信息安全数学基础中的相关运算。
不仅仅有代码,还有相关的PDF文档的说明,希望能对密码学的初学者有帮助。
- 2022-04-14 22:59:32下载
- 积分:1
-
K-mean算法,并通过了IRIS数据的测试。-K-mean algorithm, and through the IRIS data testing.
- 2022-09-07 14:40:02下载
- 积分:1
-
in Turbo C development environment and achieve symmetric matrix input, and to de...
在Turbo C环境下开发,实现对称矩阵的输入,并判定是否为正定。可以修改输入模块实现对任意非奇异矩阵求逆。求逆算法采用伴随矩阵法,求解行列式采用化上三角矩阵法。该算法系本人根据《线性代数》描述编写,矩阵的最大阶数可任意修改,更具有通用性。-in Turbo C development environment and achieve symmetric matrix input, and to determine whether the positive. Can modify the input module of arbitrary non-singular matrix inversion. Inverse algorithm adjoint matrix method, used to solve determinant of the upper triangular matrix. The algorithm is based on my "Linear Algebra" to describe the preparation, the biggest band Matrix will be able to arbitrarily amend, more versatile.
- 2023-01-02 15:05:03下载
- 积分:1
-
顺序队列C实现
#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status; typedef int QElemType; /* QElemType类型根据实际情况而定,这里假设为int *//* 循环队列的顺序存储结构 */typedef struct{ QElemType data[MAXSIZE]; int front; /* 头指针 */ int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */}SqQueue;Status visit(QElemType c){ printf("%d ",c); return OK;}/* 初始化一个空队列Q */Status Init
- 2022-08-13 11:29:01下载
- 积分:1
-
使用python实现搜索和广深(人工智能)
本文介绍了搜索深度和宽度在人工智能中使用的发展。
在实现中使用了Python。
- 2022-04-19 19:55:02下载
- 积分:1
-
小波分解
小波分解图像使图像分为低频和高频信息,通过这种方法可以增强图像的清晰度
- 2023-05-14 18:10:03下载
- 积分:1