自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (4)
  • 收藏
  • 关注

原创 c# Socket关闭问题存档

how to close socket properly in c#

2024-06-15 23:33:36 405

原创 模拟温度传感器 LM35 的问题

有时候东西做不出来,真不是自己不努力,忙活一天发现tmd东西是假的Arduino / Betrug mit Fake LM35 Temperatursensoren LM35 Sensor Not Working? - Here is what you should do

2023-07-16 01:16:47 890 2

原创 PyInstaller打包Netgen/NGSolve

Netgen/NGSolve是做有限元剖分的开源包,最近有个项目需要同时对多个三维物体进行有限元剖分,Netgen自带的GUI运行程序无法满足这种灵活运用需求,运行速度被拖累,遂转向其python版本NGS-Py官方网页上显示在python下面的安装方式支持Anacondaconda config --add channels conda-forgeconda config --add...

2019-12-11 17:01:23 1324 2

原创 三维闭合B样条曲线拟合算法Matlab代码

在做相关项目需要解决B样条插值问题,记录如下感谢以下参考资料的帮助% ref: 闭合 B 样条曲线控制点的快速求解算法及应用% http://www.doc88.com/p-5714423317458.html% https://blog.csdn.net/liumangmao1314/article/details/54588155========================...

2019-05-23 22:26:13 8996 9

Python 基础教程第2版 300dpi高清版

Python 基础教程第2版 300dpi高清版 Beginning python from novice to professional second edition Author: Magnus Lie Hetland

2019-03-31

Learning Cython Programming

Cython is a tool that makes writing C extensions to Python as easy as writing Python itself. This is the slogan to which Cython conforms. For those who don't know what I am talking about, writing C extensions to Python from scratch is a fairly difficult process; unless you really understand the Python-C API fully with respect to GIL and garbage collection as well as managing your own reference counting, it's a very difficult process. I tend to consider Cython to be along these lines: what Jython is to Java and Python, Cython is to C/C++ and Python. It allows us to extend and develop bindings to applications in a really intuitive manner so that we are able to reuse code from levels of the software stack. The Cython compiler compiles the Cython language or even pure Python to a native C Python module, which can be loaded like any Python module via the normal import. It not only generates all the wrapper and boilerplate code, but also commands the Python garbage collector to add all the necessary reference counting code. What's interesting with the Cython language is that it has native support for understanding C types and is able to juggle them from both languages. It's simply an extension of Python that has additional keywords and some more constructs and which allows you to call into C or Python.

2018-12-26

10部算法经典著作的合集

Dr. Dobb's Algorithms Collection

2008-09-14

10部算法经典著作的合集(1)

Dr. Dobb's Algorithms Collection 下载两个压缩文件后解压

2008-09-14

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除