-Python Packages- Part 6: Data storage with HDF5

Author: Thomas Severin

Date: 22.Nov.2020

What the hell is HDF ? "The Hierarchical Data Format HDF (HDF4, HDF5) is the name of a set of file formats and libraries designed to store and organize large amounts of numerical data. Originally developed at the National Center for Supercomputing Applications, it …

more ...

-Python Packages- Part 5: Psutil

Author: Thomas Severin

Date: 12.Nov.2020

I wrote a small Python script to be ready for the next Mars invasion. It is running all the time on my server. It checks only some system values like CPU and net usage and the availability of simutechno.net. If there is …

more ...

-Python Packages- Part 4: Cython

Author: Thomas Severin

Date: 22.Oct.2020

With Cython you are able to write C and C++ modules for Python. It implements a superset of the Python language. You are also able to call C-functions and realize declaration of variables and functions like in C (e.g. float x;or …

more ...

Python Packages- Part 3: Sympy

Author: Thomas Severin

Date: 22.Jun.2020

SymPy is a library for symbolic computation for ….(YES! you are right) for Python.

It includes features like basic symbolic arithmetic, calculus, algebra and discrete mathematics. To

show you a simple example, I used a classical linear system of a one-dimensional movement of …

more ...

-Python Packages- Part 2: Scipy

Author: Thomas Severin

Date: 15.Feb.2020

In this part I want to tell something about SciPy. It is an extension for Numpy.

SciPy contains modules for optimization, linear algebra, integration, interpolation, special functions, FFT, signal and image processing, ODE solvers and others.

Here I want to show you an …

more ...

Python Packages- Part 1: Numpy and Matplotlib

Author: Thomas Severin

Date: 12.Jan.2020

Python is a fantastic programming tool. It has a simple syntax, a lot of additional libraries and these scripts are running out of the box. All you need is an installed Python interpreter and the used libraries. It runs under MS Windows, Mac …

more ...