-
FileMapping使用程序形式,在formmain.pas { } { formmain frmMain r * RES }是…
program FileMapping uses Forms, formMain in formMain.pas {frmMain} {$R *.res} begin Application.Initialize Application.CreateForm(TfrmMain, frmMain) Application.Run end.-program FileMapping uses Forms, formMain in formMain.pas {frmMain} {$R*.res} begin Application.Initialize Application.CreateForm(TfrmMain, frmMain) Application.Run end.
- 2022-03-29 14:12:49下载
- 积分:1
-
特等奖2012 ICM纸机学习复杂网络
2012年icm造纸机学习网优秀获奖者
- 2022-06-16 20:25:40下载
- 积分:1
-
应用程序向导创建了这个bindfile应用你。这个应用程序
AppWizard has created this BindFile application for you. This application
not only demonstrates the basics of using the Microsoft Foundation classes
but is also a starting point for writing your application.
This file contains a summary of what you will find in each of the files that
make up your BindFile application.
-AppWizard has created this BindFile appli cation for you. This application not only demon strates the basics of using the Microsoft Found ation classes but is also a starting point for wr iting your application. This file contains a su mmary of what you will find in each of the files th at BindFile make up your application.
- 2022-03-02 06:20:05下载
- 积分:1
-
读ms word文件并以文本方式打印出来
读ms word文件并以文本方式打印出来-Reading ms word document and print out the text
- 2023-04-10 05:55:08下载
- 积分:1
-
多目标nsga最新算法,自己改进
多目标nsga最新算法,自己改进后的,对学习这个方向的很有帮助
- 2022-01-26 08:31:23下载
- 积分:1
-
flv_conversion guide file
flv_conversion guide file
- 2022-03-24 13:43:38下载
- 积分:1
-
编程时发现,网上下的许多代码文件开头的几个都不是所需要的代码,因此就写了个简单的除去一个文件每行开始的几个字符的程序,最近发现每次要选文件的路径不方便,改用直接...
编程时发现,网上下的许多代码文件开头的几个都不是所需要的代码,因此就写了个简单的除去一个文件每行开始的几个字符的程序,最近发现每次要选文件的路径不方便,改用直接拖东文件更方便
-discard the first byte from a source file,this new editon,you can drap source file and not to select source file s path
- 2022-03-22 17:13:29下载
- 积分:1
-
演示了将用","分隔的文件转换到Excel文件的转换。包括组件调用,Excel单元格的字体、颜色、属性设置等操作。...
演示了将用","分隔的文件转换到Excel文件的转换。包括组件调用,Excel单元格的字体、颜色、属性设置等操作。-Will be used to demonstrate " ," delimited file conversion to Excel file conversion. Including the components to call, Excel cell fonts, colors, and other property operation.
- 2022-05-26 10:33:09下载
- 积分:1
-
原始数据划分为train.dat和test.dat
应用背景开始是做movielense的数据,可以把原始数据任意划分为train.dat和test.dat,主要是为了做验证实验。非常简单明了,适合初学者看看,如果不喜欢,请轻喷。关键技术# -*- coding: cp936 -*-
from sklearn import cross_validation
c = []
filename = r"Raw.data" #原始数据
out_train = open(r"train.txt","w") #训练集
out_test = open(r"test.txt","w") #测试集
for line in open(filename):
items = line.strip().split(",")
c.append(items)
c_train,c_test = cross_validation.train_test_split(c,test_size=0.1)#size =你需要的比例
for i in c_train:
out_train.write(",".join(i)+"
")
for i in c_test:
out_test.write(",".join(i)+"
")
- 2022-01-25 21:21:56下载
- 积分:1
-
搜索并替换文件中指定的字串
搜索并替换文件中指定的字串-search and replace documents specified string
- 2022-02-13 16:28:14下载
- 积分:1