Python Numpy introduction
Python Numpy introduction
- Numpy is python Package which stands for "Numerical python".
- This was created in 2005 by Travis Oliphant.
- Mathematical and logical calculations on Array.
- Fourier transforms and routines for shape manipulation.
- It has built in functions for Linear Algebra random number generation.
- It used for scientific calculation.
- It is faster than python List.
- It is fast because it is associated with C Programming.
Numpy is often called as an alternate for MatLab ( a progamming platform designed specifically for engineers and scientist for data analysis. developing algorithms, Create model and application etc.)
NumPy is used with packages like SciPy (Scientific Python ) and Mat-Plotlib (Plotting Library) and this makes it capable to replace MATLAB.
- One Dimensional Array is referred to as Vector.
- Two Dimensional Array is referred to as Matrix.
- Three Dimensional Array is referred to as Tensor.
Post a Comment