-
helpsvm
自控应用svm的介绍文档,方便下载传看。(mysvm is used to train a SVM on a given example set and testing the results.it is very conveninent to learn about it by u self.)
- 2016-04-26 11:19:24下载
- 积分:1
-
IL Spy汉化版
说明: EXE 以及C# C C++文件进行反编译(EXE File Decompilation)
- 2020-06-22 13:20:02下载
- 积分:1
-
Routines-in-C-C-plus-and-Matlab
This Ebook includes a number of examples of parabolic PDEs solved by programmes written in either C, C++, Fortran, or Matlab.
- 2013-03-28 09:16:04下载
- 积分:1
-
EnumerateAudioCaptureFilterCapabilities
audio card enumerate searching ok.
for multimedia developing project.
thank you
- 2014-01-08 17:50:46下载
- 积分:1
-
C# FileInfo获取文件的各种属性
C# 创建FileInfo对象,获取文件的各种属性,可以获取到以下的文件信息:创建时间、上次访问时间、上次写入时间、文件名称、完整目录、完整路径、是否只读、文件长度。
具体的实现过程:
textBox1.Text = openFileDialog1.FileName;
FileInfo finfo = new FileInfo(textBox1.Text); //实例化FileInfo对象
string strCTime, strLATime, strLWTime, strName, strFName, strDName, strISRead;
long lgLength;
strCTime = finfo.CreationTime.ToShortDateString(); //获取文件创建时间
strLATime = finfo.LastAccessTime.ToShortDateString(); //获取上次访问该文件的时间
strLWTime = finfo.LastWriteTime.ToShortDateString(); //获取上次写入文件的时间
strName = finfo.Name; //获取文件名称
strFName = finfo.FullName;//获取文件的完整目录
strDName = finfo.DirectoryName;//获取文件的完整路径
strISRead = finfo.IsReadOnly.ToString(); //获取文件是否只读
lgLength = finfo.Length; //获取文件长度
MessageBox.Show("文件信息:
创建时间:" + strCTime + " 上次访问时间:" + strLATime + "
上次写入时间:" + strLWTime + " 文件名称:" + strName + "
完整目录:" + strFName + "
完整路径:" + strDName + "
是否只读:" + strISRead + " 文件长度:" + lgLength);
以上代码段请写入一个按钮事件中,这样当用户单击按钮时,执行上述代码。
- 2023-02-14 12:35:03下载
- 积分:1
-
BC_HVAC
BC_HVAC一个LNC DDE的例程,很值得下载(LNC DDE a BC_HVAC the routine, it is worth downloading)
- 2009-06-22 16:35:53下载
- 积分:1
-
cc2530-datasheet
cc2530zigbee芯片英文资料,数据手册(cc2530zigbee chip information in English, Data Sheet)
- 2013-08-24 15:02:02下载
- 积分:1
-
Particle-swarm-optimization-(pso)
粒子群算法,用于无线传感器网络节点动态部署(Particle swarm algorithm for dynamic deployment of wireless sensor nodes)
- 2016-01-16 10:32:24下载
- 积分:1
-
uv_historgam
利用已知的平坦道路的视差图,得出uv方向的直方图,并且求出直线(The histogram of the UV direction and the straight line are obtained by using the disparity map of the known flat road.)
- 2018-12-31 17:03:01下载
- 积分:1
-
_充流管道单向流固耦合数值模拟自动化研究
说明: 针对充流管道单向流固耦合数值模拟过程复杂、数据在耦合传递中存在偏差的问题,采用
C++语言编制了充流管道单向流固耦合数值模拟程序,实现了从模型建立、流体计算到结构分析
过程的自动化,确保了从流体计算到结构计算过程中数据传递的准确性.利用参考文献中的试验数
据验证了此程序计算结果的正确性,以实际发电厂的一段疏水管道为例进行单向流固耦合数值模
拟,描述了程序自动建立管道模型、模拟管内流体压力分布以及将流体压力数据导入管道结构中进
行管道应力计算的过程.结果表明:该充流管道单向流固耦合数值模拟程序具有结果准确、操作简
便的特点,可应用于多种充流管道的设计改造和风险预测中(Aiming at the complex numerical simulation process of one-way fluid-structure coupling in flow-filled pipeline and the deviation of data in coupling transmission, the method is adopted.
C++ language has compiled the numerical simulation program of one-way fluid-structure coupling for filling pipeline, which has realized the process from model establishment, fluid calculation to structure analysis.
The automation of the process ensures the accuracy of data transfer from fluid calculation to structural calculation.
The correctness of the calculation results is verified by the program, and the one-way fluid-structure coupling numerical model is carried out for a section of)
- 2020-06-23 01:00:01下载
- 积分:1