-
myShowData
C#编写的数据显示程序,曲线显示,可以手动调整,也可以自动加载,数据是通过串口收到的数据,和前一个程序myDataCollect.zip配套使用!(Data written in C# program, the curve shows, you can manually adjust, you can also automatically load the data received through the serial data, and the former supporting the use of a program myDataCollect.zip!)
- 2011-04-22 12:18:09下载
- 积分:1
-
CTest
A C Test --- The 0x10 Best Questions for Would-be Embedded Programmers(A C Test--- The 0x10 Best Questions for Would-be Embedded Programmers)
- 2009-11-30 08:55:13下载
- 积分:1
-
matlabandBP
说明: 一个MATLAB和BP算法的程序,对神经网络学习有帮助(matlab and bp)
- 2010-05-04 17:50:20下载
- 积分:1
-
diffusion
非结构任意多边形网格辐射扩散方程有限体积格式(Arbitrary polygon mesh unstructured finite volume form of radiation diffusion equation)
- 2011-07-11 21:51:14下载
- 积分:1
-
真是个好东西
真是个好东西,值得下载真是个好东西真是个好东西真是个好东西真是个好东西
- 2022-05-22 08:19:55下载
- 积分:1
-
CandPiont
C和指针,强烈推鉴学C的人看一看,保证不会让你失望.(C and indicators, strongly pushed Stephen C. study to look at the people, guarantee you will not be disappointed.)
- 2020-06-26 04:20:02下载
- 积分:1
-
Science-and-engineering
科学与工程数值算法(Visual C++版),原书配套vc++6.0实现代码(Science and engineering numerical algorithm (Visual C++ version))
- 2015-08-06 15:46:36下载
- 积分:1
-
c++,显示图像
IPicture接口对象的创建
方法1:直接通过文件创建
LPCSTR szFileUrl;
IPicture *pIPicture;
OleLoadPicturePath(CComBSTR(szFileUrl),
(LPUNKNOWN)NULL,
0,
0,
IID_IPicture,
(LPVOID*)&pIPicture))
方法2:通过IStream来创建
// 加载电子地图
LPCSTR szFileUrl;
IStream *pStream = NULL;
IPicture *pIPicture = NULL;;
CFileStatus fstatus;
CFile file;
LONG lFileSize;
HGLOBAL hGlobal;
if(file.Open(szFileUrl, CFile::modeRead) && file.GetStatus(szFileUrl, fstatus)
&& ((lFileSize = fstatus.m_size) != -1))
{
hGlobal = GlobalAlloc(GMEM_MOVEABLE, lFileSize);// 开辟大内存
if(hGlobal != NULL)
{
LPVOID pvData = NULL;
&nb
- 2022-01-26 14:55:37下载
- 积分:1
-
MCG
MC9S12DZ60时钟初始化程序, C语言, code warrior 软件(initial program of MCG, C language,code warrior software)
- 2012-01-02 18:01:07下载
- 积分:1
-
拓扑关系构建
应用背景
拓扑关系是GIS中空间目标之间最基本也是最重要的关系之一,在空间数据建模、空间查询、分析、推理、制图综合、图像检索和相似性分析等过程中起着重要的作用。
关键技术使用C#进行编程,原始数据存储在文本文件中,文本文件保存的是点和弧段信息(也可以是边)。读取数据后,算法能够自动生成拓扑信息,并实现含岛多边形,多边形使用链状独立编码表达拓扑关系。
- 2023-04-01 14:40:04下载
- 积分:1