Contiguous Array and Reshaping in Python

Reshape is an important feature which lets you to change the shape of your array without changing its data whereas ravel is used to get the 1D contiguous flattened array containing the input elements In this post we will see how ravel and reshape works an… Read more

Similar