tmc2130 Trinamic TMC2130步进驱动器
2021-11-19 15:37:41 1.97MB C++
1
Boost程序库完全开发指南,带有目录索引。
2021-11-12 00:09:45 21.54MB Boost,
1
Spring Boot嵌入式Zookeeper 一个小的实用程序库,可以轻松地在SpringBoot应用程序上启用嵌入式ZooKeeper服务器。 该库已发布到Maven Central,因此: 将以下依赖项添加到pom.xml中: io.github.raonigabriel spring-boot-embedded-zookeeper 2.0.0 用法 只需将@EnableEmbeddedZooKeeper添加到任何@Configuration或@SpringBootApplication类中,如下所示: package com.myco.myapp
2021-11-08 11:37:34 17KB embedded spring spring-boot zookeeper
1
STM32串口收/发程序--库函数编程-附件资源
2021-10-29 10:50:14 106B
1
英文书名:The C++ Standard Library(A Tutorial and Reference)
2021-10-29 10:45:14 16.35MB C++ 电子书
1
Net 程序库,用 c # 编程读写 AutoCAD dxf 文件。包含使用指南。 它支持文本和二进制格式的 AutoCad2000、 AutoCad2004、 AutoCad2007、 AutoCad2010、 AutoCad2013和 AutoCad2018 dxf 数据库版本。代码示例: public static void Main() { // your dxf file name string file = "sample.dxf"; // by default it will create an AutoCad2000 DXF version DxfDocument dxf = new DxfDocument(); // an entity Line entity = new Line(new Vector2(5, 5), new Vector2(10, 5)); // add your entities here dxf.AddEntity(entity); // save to file dxf.Save(file); // this check is optional but recommended before loading a DXF file DxfVersion dxfVersion = DxfDocument.CheckDxfFileVersion(file); // netDxf is only compatible with AutoCad2000 and higher DXF version if (dxfVersion < DxfVersion.AutoCad2000) return; // load file DxfDocument loaded = DxfDocument.Load(file); }
2021-10-28 08:34:53 4.41MB dxf C# 读写 CAD
1
这是我为了2009电子大赛收集的数据采集程序,非常多,大概有30到40个,现在电子设计大赛结束了,我传上来给大家,收集过程中很辛苦,所以设置的下载分数有点高,望网友们见谅!!!
1
合流 适用于Python的时间序列实用程序库。 特征: 时间间隔均匀/不均匀的类 不等距时间序列的() 将等距时间序列转换为数据集() 时间序列的预测包装,例如keras() 安装 要求: Python3.5+ 安装: git clone https://github.com/kweimann/conflux.git cd conflux pip install . 例子 插补 有关完整的示例,请参见examples/interpolation.py 。 # number of observations n = 25 # time interval i.e. first and last timestamp t0 , tn = [ 0 , 200 ] # function producing observation value from observation ti
1
点击添加/删除windows组件时,报错:无法加载安装程序库iis.dll,或是找不到函数OcEntry。请与您的系统管理员联系。特定错误码是Ox7e。 点击确定之后就出现:无法初始化程序。 原因及解决方法: C:\Windows\System32\中缺少四个dll文件: iis.dll setupqry.dll imsinsnt.dll fp40ext.dll 下载后复制到目录下就好了。
1
Boost是一个功能强大、构造精巧、跨平台、开源并且完全免费的C++程序库,有着“C++‘准’标准库”的美誉。 Boost由C++标准委员会部分成员所设立的Boost社区开发并维护,使用了许多现代C++编程技术,内容涵盖字符串处理、正则表达式、容器与数据结构、并发编程、函数式编程、泛型编程、设计模式实现等许多领域,极大地丰富了C++的功能和表现力,能够使C++软件开发更加简捷、优雅、灵活和高效。 本书基于2014年11月发布的Boost 1.57版,介绍了其中的所有129个库,并且结合C++11/14标准详细、深入地讲解了其中数十个库,同时实现了若干颇具实用价值的工具类和函数,可帮助读者迅速地理解、掌握Boost的用法并应用于实际的开发工作。
2021-10-19 18:42:31 99.98MB BOOST C++ 开发 编程
1