
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 10476 Articles for Python

377 Views
To compute the determinant of a 2D array in linear algebra, use the np.linalg.det() in Python Numpy. The 1st parameter, a is the input array to compute determinants for. The method returns the determinant of a.StepsAt first, import the required libraries-import numpy as npCreate an array −arr = np.array([[ 5, 10], [12, 18]])Display the array −print("Our Array...", arr)Check the Dimensions −print("Dimensions of our Array...", arr.ndim) Get the Datatype −print("Datatype of our Array object...", arr.dtype)Get the Shape −print("Shape of our Array object...", arr.shape)To compute the determinant of a 2D array in linear algebra, use the np.linalg.det() in Python −print("Result...", np.linalg.det(arr))Exampleimport numpy ... Read More

5K+ Views
The arccos is a multivalued function: for each x there are infinitely many numbers z such that cos(z) = x. The convention is to return the angle z whose real part lies in [0, pi]. For real-valued input data types, arccos always returns real output. For each value that cannot be expressed as a real number or infinity, it yields nan and sets the invalid floating point error flag. For complex-valued input, arccos is a complex analytic function that has branch cuts [-inf, -1] and [1, inf] and is continuous from above on the former and from below on the ... Read More

221 Views
To Compute the determinant of an array in linear algebra, use the np.linalg.det() in Python Numpy. The 1st parameter, a is the input array to compute determinants for. The method returns the determinant.StepsAt first, import the required libraries -import numpy as npCreate an array −arr = np.array([[ 5, 10], [12, 18]])Display the array −print("Our Array...", arr)Check the Dimensions −print("Dimensions of our Array...", arr.ndim)Get the Datatype −print("Datatype of our Array object...", arr.dtype)Get the Shape −print("Shape of our Array object...", arr.shape)To Compute the determinant of an array in linear algebra, use the np.linalg.det() in Python Numpy −print("Result (determinant)...", np.linalg.det(arr))Exampleimport numpy as np ... Read More

125 Views
To return True if first argument is a typecode lower/equal in type hierarchy, use the numpy.issubdtype() method in Python Numpy. The parameters are the dtype or object coercible to oneStepsAt first, import the required library −import numpy as npUsing the issubdtype() method in Numpy −print("Result...", np.issubdtype(np.float64, np.float32)) print("Result...", np.issubdtype(np.float64, np.floating)) print("Result...", np.issubdtype(np.float32, np.floating)) print("Result...", np.issubdtype('i4', np.signedinteger)) print("Result...", np.issubdtype('i8', np.signedinteger)) print("Result...", np.issubdtype(np.int32, np.integer))Exampleimport numpy as np # To return True if first argument is a typecode lower/equal in type hierarchy, use the numpy.issubdtype() method in Python Numpy. # The parameters are the dtype or object coercible to one print("Using ... Read More

219 Views
To compute the condition number of a matrix in linear algebra, use the numpy.linalg.cond() method in Python. This method is capable of returning the condition number using one of seven different norms, depending on the value of p. Returns the condition number of the matrix. May be infinite.The condition number of x is defined as the norm of x times the norm of the inverse of x; the norm can be the usual L2-norm or one of a number of other matrix norms. The 1st parameter is x, the matrix whose condition number is sought. The 2nd parameter is p, ... Read More

1K+ Views
Trigonometric tangent is equivalent to np.sin(x)/np.cos(x) element-wise. To find the Trigonometric tangent of an angle, use the numpy.tan() method in Python Numpy. The method returns the sine of each element of the 1st parameter x. This is a scalar if is a scalar. The 1st parameter, x, is an Angle, in radians (2pi means 360 degrees). The 2nd and 3rd parameters are optional.The 2nd parameter is an ndarray, A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple ... Read More

294 Views
To compute the condition number of a matrix in linear algebra, use the numpy.linalg.cond() method in Python. This method is capable of returning the condition number using one of seven different norms, depending on the value of p. Returns the condition number of the matrix. May be infinite.The condition number of x is defined as the norm of x times the norm of the inverse of x; the norm can be the usual L2-norm or one of a number of other matrix norms. The 1st parameter is x, the matrix whose condition number is sought. The 2nd parameter is p, ... Read More

225 Views
The arcsin is a multivalued function: for each x there are infinitely many numbers z such that sin(z) = x. The convention is to return the angle z whose real part lies in [-pi/2, pi/2]. The inverse sine is also known as asin or sin^{-1}.For real-valued input data types, arcsin always returns real output. For each value that cannot be expressed as a real number or infinity, it yields nan and sets the invalid floating point error flag.For complex-valued input, arcsin is a complex analytic function that has, by convention, the branch cuts [-inf, -1] and [1, inf] and is ... Read More

124 Views
The numpy.promote_types() method returns the data type with the smallest size and smallest scalar kind to which both type1 and type2 may be safely cast. Returns the promoted data type. The returned data type is always in native byte order. The 1st parameter is the first data type. The 2nd parameter is the second data type.StepsAt first, import the required library −import numpy as npChecking with promote_types() method in Numpy −print("Result...", np.promote_types('f4', 'f8')) print("Result...", np.promote_types('i8', 'f4')) print("Result...", np.promote_types('>i8', 'i8', 'Read More

161 Views
The numpy.can_cast() method returns True if cast between data types can occur according to the casting rule. The 1st parameter is the data type or array to cast from. The 2nd parameter is the data type to cast to. The 3rd parameter controls what kind of data casting may occur, with values ‘no’, ‘equiv’, ‘safe’, ‘same_kind’ and ‘unsafe’, ‘no’ means the data types should not be cast at all.‘equiv’ means only byte-order changes are allowed.‘safe’ means only casts which can preserve values are allowed.‘same_kind’ means only safe casts or casts within a kind, like float64 to float32, are allowed.‘unsafe’ means ... Read More