2021年10月9日 星期六

Introduction of CoolProp for Excel

CoolProp provides functions for thermophysical properties of fluids. It is open-source, free, and licensed under the MIT License. Basically, you can do anything you like with the MIT license. It is very permissive and not copy-left. You can use CoolProp in commercial code.

2017年4月1日 星期六

Running Numba Example of Matrix Multiplication

Quoted from Numba's Documentation:
"Numba works by generating optimized machine code using the LLVM compiler infrastructure at import time, runtime, or statically (using the included pycc tool). Numba supports compilation of Python to run on either CPU or GPU hardware, and is designed to integrate with the Python scientific software stack."

2016年10月8日 星期六

Running Cython Tutorial

Quoted from Cython's Documentation:
"... Cython is Python with C data types. ... Almost any piece of Python code is also valid Cython code. ... But Cython is much more than that, because parameters and variables can be declared to have C data types. ..."

2016年9月17日 星期六

Selecting Python Distribution for Windows Platform

A Python distribution sets up CPython interpreter, popular/powerful packages and IDEs all at once, and saves lots of efforts. For a reference list of Python distributions, please refer to Alternative Python Implementations, which is a useful starting point.
Python開發環境能一次安裝及設定完成許多項目,包括CPython直譯器、許多通用又強大的套件及整合開發環境(IDE),能為開發人員省下許多力氣,並能立即開始使用。欲參考Python開發環境之清單,請參考Alternative Python Implementations,此為一有用的起點。