登录
首页 » 文件处理 » 实现对E2P的读写操作,包括底层的具体函数。已经过实际验证。...

实现对E2P的读写操作,包括底层的具体函数。已经过实际验证。...

于 2022-02-05 发布 文件大小:1.71 kB
0 50
下载积分: 2 下载次数: 1

代码说明:

实现对E2P的读写操作,包括底层的具体函数。已经过实际验证。-achieve the right E2P write, including the bottom of the specific function. Have been actually tested.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 读取ini信息
    读取ini文件信息-read ini file information
    2023-01-03 00:05:23下载
    积分:1
  • Spatial data files, data format conversion shp files into OGC specifications wkt...
    空间数据文件,数据格式的转换shp文件转换成OGC规范的wkt数据格式-Spatial data files, data format conversion shp files into OGC specifications wkt data format
    2022-04-17 07:57:56下载
    积分:1
  • 完全使用标准 C++ 编写的分割合并程序。采用面向过程的编程风格,也就是俗称的 C 风格。希望各路高手踊跃发言,指出其不足之,提出整改意见、方案等。...
    完全使用标准 C++ 编写的文件分割合并程序。采用面向过程的编程风格,也就是俗称的 C 风格。希望各路高手踊跃发言,指出其不足之处,提出整改意见、方案等。 -Completely using standard C++ Partition the documents prepared by the merging process. Process-oriented programming style, which is commonly known as the C style. Hope that each expert will speak up and point out the inadequacies of the views put forward reform, programs such as.
    2022-03-01 16:16:41下载
    积分:1
  • 针对Excel表格操作的编程实现:通过本及配套示例源码你可以更加灵活的控制Excel表格,其中包括创建新Excel、写入表格数据、读取表格数据(包...
    针对Excel表格文件操作的编程实现:通过本文及配套示例源码你可以更加灵活的控制Excel表格文件,其中包括创建新Excel文件、写入表格数据、读取表格数据(包括对原建Excel文件自已手工添加的行、列数据的准确读取),删除已有Excel表格,对表格中指定行、列、单元格进行查询、插入、替换等操作,同时还可以将生成的Excel 文件转换为按指定分隔符分隔的其它文本格式的文件 -Excel spreadsheet file for the programming operation: Through this article and associated sample source code you can be more flexible control of Excel spreadsheet file, including creating a new Excel file, write the form data, read the form data (including the original hand-built their own Excel files add rows, columns of data an accurate reading), delete the existing Excel table, the table specified in the rows, columns, cell query, insert, replace and other operations, but also can be generated Excel files into a specified separator delimited text format files of other
    2022-01-24 08:50:17下载
    积分:1
  • 本软可以将frotran程序的框架全部列出来,能让程序之间的互相调用关系看起来一目了然,同时在一个大型的程序中间查找变量起来特别的方便,不仅可以显示出所在的行...
    本软件可以将frotran程序的框架全部列出来,能让程序之间的互相调用关系看起来一目了然,同时在一个大型的程序中间查找变量起来特别的方便,不仅可以显示出所在的行数,而且,在查找到的内容里面双击就可以到达相应的位置,对用fortran编程的人来说,我认为还是一个不错的工具。-the software can be frotran the procedures set out in the framework of all, procedures can call among the relations seem clear, at the same time a large-scale search procedures intermediate variables is particularly convenient, not only can demonstrate that the line number, but in search of the contents inside can be reached double-click on the corresponding position, using FORTRAN programming to the people, I believe it is a good tool.
    2022-07-03 23:30:25下载
    积分:1
  • VS2005 on the basis of the source code to operate xml, query, add, delete and so...
    该源码基于vs2005基础上操作xml,包括查询,添加,删除等.在平时配置设置中经常使用xml,该例可作参考-VS2005 on the basis of the source code to operate xml, query, add, delete and so on. In the usual configuration settings in the frequent use of xml, the cases should be used for reference
    2023-04-10 10:35:04下载
    积分: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
  • 实现窗体自动隐藏方法有多种,可以使用定时器,不断监视鼠标,当鼠标移动到窗体边缘时,显示窗体,当鼠标离开后隐藏窗体。也可以在鼠标收到WM_NCMOUSEMOVE或...
    实现窗体自动隐藏方法有多种,可以使用定时器,不断监视鼠标,当鼠标移动到窗体边缘时,显示窗体,当鼠标离开后隐藏窗体。也可以在鼠标收到WM_NCMOUSEMOVE或 WM_MOUSEMOVE(无边框窗体)时激活窗体,然后在窗体消息WM_ACTIVE中设置显示或隐藏,这种方法在窗体未失去焦点时不会隐藏。我在原本的设计中便使用这种方法,只是在设计时发现非主窗体不太合适,激活窗体时会出现两个键盘焦点,而且我所需要的焦点是虚假的,可能我的设计不当,那位朋友若能完美实现,不妨交流一下。-achieve automatic hidden forms There are different ways they can use timers, constant surveillance mouse, the mouse moved to the brink of the form, the form shown when the mouse left hidden forms. The mouse can also receive WM_NCMOUSEMOVE or WM_MOUSEMOVE (no window frame), activated forms, and then in the form set WM_ACTIVE news show or hide, in the form of this method has not lost its focus will not be hidden. In my original design will use this method, the design was found non-main forms not appropriate, will be activated when there Form 2 keyboard focus, and I need the focus is false, maybe I am a poorly designed and friends who can achieve perfection, it may be things about.
    2022-03-04 19:46:00下载
    积分:1
  • DTMF解码HEX
    dtmf decoder hex file
    2023-06-14 07:50:04下载
    积分:1
  • 以一个小型公司的人员信息系统为例,用基类的指针数组来不同的派生类对象,从而实现拉多态性调用。使用动态数组类模板Array来代替C++预定义的数组类型。...
    以一个小型公司的人员信息系统为例,用基类的指针数组来处理不同的派生类对象,从而实现拉多态性调用。使用动态数组类模板Array来代替C++预定义的数组类型。-to a small company personnel information system. use the base class pointer array to handle different types of derived objects, thereby realizing Rafah called polymorphism. Dynamic Array array class template to replace the C array of predefined types.
    2022-01-26 08:14:38下载
    积分:1
  • 696524资源总数
  • 103986会员总数
  • 80今日下载