-
二进制平方和乘方的幂模算法,是密码学中的重要问题.这里提供他的简单算法....
二进制平方和乘方的幂模算法,是密码学中的重要问题.这里提供他的简单算法.-binary square and involution of Power Modules algorithms, cryptography is the most important issue. Here he provides a simple algorithm.
- 2022-07-15 17:44:09下载
- 积分:1
-
Font generation software, for you to display the document generate a dedicated s...
字库生成软件,可以为您所要显示的文件生成专用小字库,免除字符一个个输入的麻烦。-Font generation software, for you to display the document generate a dedicated small font, remove the characters enter a trouble.
- 2022-06-17 03:47:30下载
- 积分:1
-
数制转换 栈的应用
通过栈的应用,实现任意数制之间的转换。第1行输入两个数,即转换前的数制 转换后的数制,以空格分割第2行输入待转换的数 假定全部数值
- 2023-05-08 17:15:03下载
- 积分:1
-
exercise for textbook
根据输入打印日历。
《Java语言程序设计》习题-exercise for textbook
- 2023-08-12 09:10:02下载
- 积分:1
-
This document contains information about frequency domain processing. details ab...
This document contains information about frequency domain processing. details about 1-d,2-d fourier transform,inverse fourier transform,image enhancement techniques. contains some sample code and output also
- 2022-08-03 21:54:16下载
- 积分:1
-
通过C语言操作文件来实现的控制台信息管理系统
通过C语言操作文件来实现的控制台信息管理系统-File through the C language operations to implement information management system console
- 2022-01-31 09:19:51下载
- 积分:1
-
快速傅里叶变换
F2812 标准FFT算法,128点,256点,512点,1024点FFT算法,具体做法为将库含数FFT.LIB加入的目标项目,加入对应的C含数和头文件,特别注意的FFT算法缓冲去一定要存放在0X8000H中的内部缓冲区中!!!切记,本人调试时就走了很多弯路啊-F2812
- 2022-06-03 01:50:03下载
- 积分:1
-
一维fdtdMATLAB程序,主要用于处理问题电磁场
一维fdtdMATLAB程序,主要用于处理问题电磁场-FdtdMATLAB one-dimensional process, is mainly used to deal with the issue of electromagnetic fields
- 2022-07-27 00:37:07下载
- 积分:1
-
使用verilog编写的交通灯控制程序,各方向通行时间可调,绿灯5s闪烁,在maxplus下调试通过,附仿真波形,在EP系列实验板上测试成功...
使用verilog编写的交通灯控制程序,各方向通行时间可调,绿灯5s闪烁,在maxplus下调试通过,附仿真波形,在EP系列实验板上测试成功-use Verilog prepared by the traffic lights control procedures, the passage of time adjustable direction, green 5s flickered in maxplus under debugging, simulation waveforms with the EP series of successful experiments board test
- 2022-08-08 01:44:50下载
- 积分:1
-
can代码
can代码
class CPoint{
private: //私有成员
float m_x, m_y;
protected: //保护成员
void SetPoint(float x, float y) {m_x = x; m_y = y;}
public: //公共成员
CPoint(float x, float y) {m_x = x; m_y = y;} //构造函数
void Move(float x, float y) {SetPoint(m_x + x, m_y + y);}
void Display() {cout
- 2022-04-01 02:38:18下载
- 积分:1