NumPy-Utils contains utilities of numpy.
Right now it continas the following 3 functions.
-
permanent(x):
Square Matrix permanent, it would be numpy data or list data. Matrix permanent is just same as determinant of the matrix but change -ve sign into +ve sign through out its calculation of determinant. -
nextmax(x, val):
Returns the max value next to the top max value of the numpy x. If val doesnot passed by user, it returns the second most max value. -
nextmin(x, val):
Returns the min value next to the least min value of the numpy x. If val doesnot passed by user, it returns the second lease min value.
In future more utilites will be added.