-
the modeling of a wind turbine
此文件显示了风力涡轮机建模的代码。它是风力涡轮机转子速度和风力涡轮机处风速的函数。当然,我们可以改变一些参数,比如风力涡轮机的叶片长度,安装风力涡轮机的空气密度。
- 2022-04-23 07:53:16下载
- 积分:1
-
This is a tool to find key word in Office Word Document.
使用C#编写的一款Office Word文档的关键字查询工具-This is a tool to find key word in Office Word Document.
- 2023-07-17 03:40:03下载
- 积分:1
-
读出"已存在"的文本文件(英文),将其中的单词写入另一个文件...
读出"已存在"的文本文件(英文),将其中的单词写入另一个文件-read out "the existence of a" text files (English), which will write another word document
- 2022-03-24 04:56:14下载
- 积分:1
-
一个delphi写的windows文件遍历的例子,仅供参考
一个delphi写的windows文件遍历的例子,仅供参考-Delphi write a windows file traversal example, for reference only
- 2022-01-25 18:08:29下载
- 积分:1
-
功能是在Excel格式文件中读取学生的E
功能是在Excel格式文件中读取学生的E-mail地址、成绩、姓名等信息,然后调用Jmail链接库函数实现学生成绩单的邮件群发.并加入了一些出错处理-Function in Excel format students read E-mail address, success, name and other information, and then call Jmail link library function of the mass-mailing transcripts of students. And add some error handling
- 2022-12-17 08:15:03下载
- 积分:1
-
文件读写类,设置文件的路径,读取文件的路径等
文件读写类,设置文件的路径,读取文件的路径等
- 2022-04-24 22:20:41下载
- 积分:1
-
编写的一个文件右移的源程序,供大家参考。
编写的一个文件右移的源程序,供大家参考。-A document prepared by the source shifted to right, for your reference.
- 2022-08-21 23:26:57下载
- 积分:1
-
Delphi文件捆绑源代码,可以捆绑任何文件!
Delphi文件捆绑源代码,可以捆绑任何文件!-Delphi source code bundled document, any document can be tied up!
- 2022-04-29 16:14:29下载
- 积分:1
-
文件切割器 ,分割成小文件
文件切割器 ,分割成小文件-paper cutter, split into small paper
- 2022-02-04 09:04:15下载
- 积分: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