-
Sound-and-Vibration
Labview 声音和振动工具包源代码,包含了声音信号的各类测试程序(Labview Sound and Vibration Toolkit source code, including the various types of test procedure sound signal)
- 2020-12-02 19:39:25下载
- 积分:1
-
tongxunlu11
基于VC++的通讯录实现,使用MFC编程(VC++ based address book implementation using MFC programming)
- 2013-08-05 17:09:03下载
- 积分:1
-
这一系统的电话号码的研究,它可以很容易地告诉你的区域…
This a system of Telephone number rearch,it can easily tell you the area of the number
- 2022-02-02 15:26:02下载
- 积分:1
-
Deep-ADMM-Net-master
说明: 基于Deep-ADMM-Net的CT重建算法(CT reconstruction algorithm based on Deep-ADMM-Net)
- 2019-04-27 20:45:41下载
- 积分:1
-
信号处理主程序
振动信号分析主程序Main program of vibration signal analysis(Main program of vibration signal analysis)
- 2018-02-27 15:38:16下载
- 积分:1
-
broadsig_gen
宽带信号产生程序,高斯噪声通过滤波器产生,希望对大家有帮助。(this is a wideband signal generation program. Geting broadband signal by make aussian noise go through the filter.)
- 2020-08-31 20:38:09下载
- 积分:1
-
Writing-UMAT-or-VUMAT
Abaqus隐式计算,UMAT和VUMAT二次开发平台学习资料和样例(Abaqus implicit calculation, UMAT and VUMAT secondary development platform and sample learning materials)
- 2021-04-05 16:59:04下载
- 积分:1
-
3Ddiejialunbo
jQuery 3D叠加切换轮播代码基于jquery.1.10.2.min.js制作,鼠标点击图片切换效果代码。(JQuery 3D overlay handover code is based on jquery.1.10.2.min.js production, mouse click image switching effect code.)
- 2018-07-02 14:46:19下载
- 积分:1
-
manyTypeConstuct
构造函数使用方法的总结,使用多种类型的构造函数创建对象。(Constructors use of the summary, the use of various types of Constructors object creation.)
- 2006-10-27 18:20:04下载
- 积分:1
-
C#修改Windows电脑的计算机名
Visual C#修改计算机名,修改电脑名称为另一个自定义的新名称,代码较简单,这里不多做介绍了,运行界面如示例截图所示。以下为核心部分代码,先睹为快,完整源码项目请下载:
[DllImport("kernel32.dll")]
private static extern int SetComputerName(string ipComputerName);//重写API函数
private void Frm_Main_Load(object sender, EventArgs e)
{
Computer computer = new Computer();//创建计算机对象
textBox1.Text = computer.Name;//显示计算机名称
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox2.Text == "")//判断计算机名称是否为空
{
MessageBox.Show("计算机名称不能为空!");
}
else
{
SetComputerName(textBox2.Text);//修改计算机名称
MessageBox.Show("计算机名称修改成功,请重新启动计算机使之生效!");
}
}
- 2022-03-07 15:38:03下载
- 积分:1