-
python-socket-with-thread-master
说明: python 多线程,网络编程,服务器端代码。(Multithreading, network programming)
- 2020-10-11 20:33:13下载
- 积分:1
-
fig1_Monte_Carlo_3
实现物理层安全,通过加入干扰噪声,提高系统容量。(The physical layer security is realized in this paper. By adding interference noise, the system capacity is improved.)
- 2020-10-05 15:37:38下载
- 积分:1
-
PSD
PSD功率谱分析,直接法、间接法两种!直接贴出C代码,可直接调用!(PSD power spectral analysis, the direct, indirect and French!)
- 2021-01-07 15:28:53下载
- 积分:1
-
radar
说明: 利用线性调频信号的雷达成像,通过匹配滤波器输出,加汉明窗(Radar imaging using LFM signal, output through matched filter and Hamming window)
- 2019-05-14 21:03:41下载
- 积分:1
-
VC++ 解答国际象棋中的N皇后问题
VC++ 用程序来解答国际象棋中的N皇后问题,N皇后问题动态演示。在一个NXN的国际象棋棋盘中摆n个皇后,使这N个皇后不能互相被对方吃掉,你知道应该怎么做么?怎么个摆法?要想知道答案,就认真研究一下本源码吧。运行程序后,将显示共计算有多少个结果,当前显示第几个等信息。
- 2022-03-06 10:39:27下载
- 积分:1
-
rdc_ad1210_spi
说明: AD2S1210 spi通信读取数据,可以使用的.(AD2S1210 spi read data,you can use this code to do what do you want.)
- 2020-07-03 14:56:22下载
- 积分:1
-
传递熵工具箱
说明: 这是一个在MATLAB中计算传递熵的工具箱。(This is a toolbox in MATLAB for calculating the transfer entropy)
- 2021-04-22 23:38:48下载
- 积分:1
-
slac015t
msp430例程,对初学者有用,有好多例程;(Msp430 routines, useful for beginners, there are many routines;)
- 2017-09-05 12:38:08下载
- 积分:1
-
Alarm clock with PIC microcontroller
Alarm clock with PIC microcontroller
- 2022-03-17 23:11:45下载
- 积分:1
-
icePubDll
获取计算机硬件信息的动态链接库,CPU序列号,硬盘序列号,MAC地址等信息
例程:
void gethardinfo()
{
QString str1="";
char buff[1024];
char buff2[1024];
char temp;
typedef int (WINAPI ICEPUB_MACHINEGETINFO)(int typeFlag,char *strInfo);
ICEPUB_MACHINEGETINFO *icePub_machineGetInfo = 0;
HINSTANCE hDLLDrv = LoadLibrary("icePubDll.dll");
if(hDLLDrv)
{
icePub_machineGetInfo = (ICEPUB_MACHINEGETINFO *)GetProcAddress(hDLLDrv, "icePub_machineGetInfo");
}
icePub_machineGetInfo(3,buff);
str1=buff;
int i=0;
int n=0;
n=str1.length();
qDebug()<<n;
for(i=0;i<n;i+=2)
{
temp=buff[i];
buff2[i+1]=temp;
buff2[i]=buff[i+1];
}
QString str2=buff2;
qDebug()<<buff2;
qDebug()<<str2;
}(Access to the computer hardware information dynamic link library, CPU serial number, hard disk serial number, MAC address and other information)
- 2017-12-28 11:45:08下载
- 积分:1