Skip to main content

Home/ EdTechTalk/ Group items tagged #numpy

Rss Feed Group items tagged

anonymous

numpy.histogram in Python - Javatpoint - 0 views

  •  
    The NumPy module of Python provides a function called NumPy.histogram(). This function represents the frequency of the number of values that are compared with a set of values ranges.
eyssant

NumPy Basic Slicing and Indexing - 0 views

  •  
    NumPy ndarray objects can be indexed using Python x[selection_obj] syntax, where x is the array. There are three kinds of indexing available in numpy: field access, basic slicing, advanced indexing.
eyssant

NumPy Ndarray Object - AlphaCodingSkills - 0 views

  •  
    Ndarray is the n-dimensional array object defined in the numpy. It stores the collection of elements of the same type. Elements in the collection can be accessed using a zero-based index. Each element in an ndarray takes the same size in memory.
eyssant

NumPy sum() function - AlphaCodingSkills - 0 views

  •  
    The NumPy sum() function is used to compute sum of array elements over a given axis. The function calculates sum of all elements present in the array by default, otherwise over the specified axis.
eyssant

NumPy reshape() function - AlphaCodingSkills - 0 views

  •  
    The NumPy reshape() function is used to give a new shape to an array without changing its data.
eyssant

NumPy Matrix Library - AlphaCodingSkills - 0 views

  •  
    The NumPy package contains matlib module. This module contains all the functions in the numpy namespace that return matrices instead of ndarray objects.
eyssant

NumPy Linear Algebra - AlphaCodingSkills - 0 views

  •  
    The NumPy package contains a number of functions which provides all the functionality required for linear algebra. Few of these functions are - dot(), vdot(), inner(), matmul(), det(), solve() and inv().
eyssant

NumPy Array Attributes - AlphaCodingSkills - 0 views

  •  
    Array attributes reflect information that is intrinsic to the array. Accessing an array through its attributes allows to get and sometimes set intrinsic properties of the array without creating a new array.
eyssant

NumPy Array from Existing Data - AlphaCodingSkills - 0 views

  •  
    The NumPy package contains a number of functions which can be used to create an array from an existing data. asarray(), frombuffer() and fromiter() fuctions.
1 - 9 of 9
Showing 20 items per page