Python_NumPy
Everything you need to know about NumPy( Creating Arrays, Indexing, Math,Statistics,Reshaping).
Why NumPy instead of List?.
Numby is Faster, while List are slow.
Why is Numby Faster?
- Fixed Type.
- Faster to Read Less Bytes of Memory.
- No Type checking when Iterating through Objects.
- Utilize Contiguous Memory.
- SIMD (Single Instruction Multiple Data) Vector Processing.
- Effective Cache Utilization.
Aplication of NumPy.
- Mathematics (MATHLAB Replacement).
- Plotting (Matplotlib)
- Backend(Pandas, Connect4, Digital Photography)
- Machine Learning.