Hackfut Security File Manager
Current Path:
/opt/alt/python27/lib64/python2.7/site-packages/numpy/core
opt
/
alt
/
python27
/
lib64
/
python2.7
/
site-packages
/
numpy
/
core
/
📁
..
📄
__init__.py
(2.53 KB)
📄
__init__.pyc
(2.54 KB)
📄
__init__.pyo
(2.54 KB)
📄
_dummy.so
(4.06 KB)
📄
_internal.py
(17.84 KB)
📄
_internal.pyc
(16.34 KB)
📄
_internal.pyo
(16.34 KB)
📄
_methods.py
(4.21 KB)
📄
_methods.pyc
(4.79 KB)
📄
_methods.pyo
(4.79 KB)
📄
arrayprint.py
(25 KB)
📄
arrayprint.pyc
(23.4 KB)
📄
arrayprint.pyo
(23.4 KB)
📄
cversions.py
(413 B)
📄
cversions.pyc
(730 B)
📄
cversions.pyo
(730 B)
📄
defchararray.py
(66.26 KB)
📄
defchararray.pyc
(75.58 KB)
📄
defchararray.pyo
(75.58 KB)
📄
fromnumeric.py
(97.02 KB)
📄
fromnumeric.pyc
(100.34 KB)
📄
fromnumeric.pyo
(100.34 KB)
📄
function_base.py
(6.73 KB)
📄
function_base.pyc
(6.72 KB)
📄
function_base.pyo
(6.72 KB)
📄
generate_numpy_api.py
(7.24 KB)
📄
generate_numpy_api.pyc
(6.93 KB)
📄
generate_numpy_api.pyo
(6.93 KB)
📄
getlimits.py
(9.49 KB)
📄
getlimits.pyc
(10.83 KB)
📄
getlimits.pyo
(10.83 KB)
📁
include
📄
info.py
(4.58 KB)
📄
info.pyc
(4.83 KB)
📄
info.pyo
(4.83 KB)
📁
lib
📄
machar.py
(10.54 KB)
📄
machar.pyc
(8.66 KB)
📄
machar.pyo
(8.66 KB)
📄
memmap.py
(10.13 KB)
📄
memmap.pyc
(10.18 KB)
📄
memmap.pyo
(10.18 KB)
📄
multiarray.so
(1.52 MB)
📄
multiarray_tests.so
(48.04 KB)
📄
numeric.py
(86.66 KB)
📄
numeric.pyc
(89.99 KB)
📄
numeric.pyo
(89.89 KB)
📄
numerictypes.py
(28.11 KB)
📄
numerictypes.pyc
(27.55 KB)
📄
numerictypes.pyo
(27.51 KB)
📄
operand_flag_tests.so
(7.26 KB)
📄
records.py
(28.75 KB)
📄
records.pyc
(24.87 KB)
📄
records.pyo
(24.87 KB)
📄
setup.py
(40.04 KB)
📄
setup.pyc
(26.76 KB)
📄
setup.pyo
(26.76 KB)
📄
setup_common.py
(13.83 KB)
📄
setup_common.pyc
(11.31 KB)
📄
setup_common.pyo
(11.31 KB)
📄
shape_base.py
(8.84 KB)
📄
shape_base.pyc
(9.76 KB)
📄
shape_base.pyo
(9.76 KB)
📄
struct_ufunc_test.so
(7.3 KB)
📄
test_rational.so
(40.23 KB)
📁
tests
📄
umath.so
(705.3 KB)
📄
umath_tests.so
(14.87 KB)
Editing: info.py
"""Defines a multi-dimensional array and useful procedures for Numerical computation. Functions - array - NumPy Array construction - zeros - Return an array of all zeros - empty - Return an unitialized array - shape - Return shape of sequence or array - rank - Return number of dimensions - size - Return number of elements in entire array or a certain dimension - fromstring - Construct array from (byte) string - take - Select sub-arrays using sequence of indices - put - Set sub-arrays using sequence of 1-D indices - putmask - Set portion of arrays using a mask - reshape - Return array with new shape - repeat - Repeat elements of array - choose - Construct new array from indexed array tuple - correlate - Correlate two 1-d arrays - searchsorted - Search for element in 1-d array - sum - Total sum over a specified dimension - average - Average, possibly weighted, over axis or array. - cumsum - Cumulative sum over a specified dimension - product - Total product over a specified dimension - cumproduct - Cumulative product over a specified dimension - alltrue - Logical and over an entire axis - sometrue - Logical or over an entire axis - allclose - Tests if sequences are essentially equal More Functions: - arange - Return regularly spaced array - asarray - Guarantee NumPy array - convolve - Convolve two 1-d arrays - swapaxes - Exchange axes - concatenate - Join arrays together - transpose - Permute axes - sort - Sort elements of array - argsort - Indices of sorted array - argmax - Index of largest value - argmin - Index of smallest value - inner - Innerproduct of two arrays - dot - Dot product (matrix multiplication) - outer - Outerproduct of two arrays - resize - Return array with arbitrary new shape - indices - Tuple of indices - fromfunction - Construct array from universal function - diagonal - Return diagonal array - trace - Trace of array - dump - Dump array to file object (pickle) - dumps - Return pickled string representing data - load - Return array stored in file object - loads - Return array from pickled string - ravel - Return array as 1-D - nonzero - Indices of nonzero elements for 1-D array - shape - Shape of array - where - Construct array from binary result - compress - Elements of array where condition is true - clip - Clip array between two values - ones - Array of all ones - identity - 2-D identity array (matrix) (Universal) Math Functions add logical_or exp subtract logical_xor log multiply logical_not log10 divide maximum sin divide_safe minimum sinh conjugate bitwise_and sqrt power bitwise_or tan absolute bitwise_xor tanh negative invert ceil greater left_shift fabs greater_equal right_shift floor less arccos arctan2 less_equal arcsin fmod equal arctan hypot not_equal cos around logical_and cosh sign arccosh arcsinh arctanh """ from __future__ import division, absolute_import, print_function depends = ['testing'] global_symbols = ['*']
Upload File
Create Folder