Category: programming languages
The Scatter Plot is often used to show vivid relations between two variables. Plotting is made very simple and easy in Python using numpy and matplotlib.pylab package. To demonstrate, …
The numpy package is a powerful toolkit for Python. With numpy you can easily do matrix (like Matlab), plot and do other data/numbers/statistics. Suppose you have a two dimensional …
In software engineering, the version number usually comprises of 4 integers separated by dots. For example, 1.0.0.2. Version comparison is usually carried out from left most to the right …
The BMP is uncompressed image file type, which is major supported in most devices (especially legacy devices). It contains almost raw image pixel data (e.g. 24-bit, RGB). The JPEG …
If you want to get the file size in bytes for a file, you can use the following function in Delphi/Object Pascal. // maxium supports 2G function getFileSizeInBytes(const fn: …