Category: programming languages
In the last post, we have defined a function to compute the numerical integration in Python and Numpy. This tutorial will guide you how to compute the mean of …
If you want to compute x2 you can easily write a function in Python like this: def sqr(x): return x * x # or x ** 2 If you …
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 …