MCPcopy Create free account

hub / github.com/numpy/numpy / functions

Functions17,008 in github.com/numpy/numpy

↓ 1 callersFunctiondtrti2_
Subroutine */
numpy/linalg/lapack_lite/f2c_d_lapack.c:41504
↓ 1 callersFunctiondtrtri_
Subroutine */
numpy/linalg/lapack_lite/f2c_d_lapack.c:41657
↓ 1 callersMethoddtype
Array API compatible wrapper for :py:meth:`np.ndarray.dtype <numpy.ndarray.dtype>`. See its docstring for more information.
numpy/array_api/_array_object.py:1076
↓ 1 callersFunctiondtype_is_implied
Determine if the given dtype is implied by the representation of its values. Parameters ---------- dtype : dtype Data type
numpy/core/arrayprint.py:1415
↓ 1 callersFunctiondtype_short_repr
Convert a dtype to a short form which evaluates to the same dtype. The intent is roughly that the following holds >>> from numpy import
numpy/core/arrayprint.py:1455
↓ 1 callersFunctiondtypemeta_wrap_legacy_descriptor
* This function takes a PyArray_Descr and replaces its base class with * a newly created dtype subclass (DTypeMeta instances). * There are some subt
numpy/core/src/multiarray/dtypemeta.c:739
↓ 1 callersFunctiondumpRoutineNames
(library, output_dir)
numpy/linalg/lapack_lite/make_lite.py:244
↓ 1 callersFunctiondump_attrs
numpy/f2py/src/fortranobject.c:749
↓ 1 callersMethoddump_properties
Print out the attributes of a compiler instance.
numpy/distutils/fcompiler/__init__.py:556
↓ 1 callersFunctiondump_table
(dll)
numpy/distutils/mingw32ccompiler.py:220
↓ 1 callersFunctiondump_ufunc_object
numpy/linalg/umath_linalg.cpp:581
↓ 1 callersMethoddump_variable
(self, name)
numpy/distutils/fcompiler/environment.py:13
↓ 1 callersFunctioneigh
Return the eigenvalues and eigenvectors of a complex Hermitian (conjugate symmetric) or a real symmetric matrix. Returns two objects, a
numpy/linalg/linalg.py:1349
↓ 1 callersFunctioneigvalsh
Compute the eigenvalues of a complex Hermitian or real symmetric matrix. Main difference from eigh: the eigenvectors are not computed.
numpy/linalg/linalg.py:1091
↓ 1 callersFunctioneinsum_list_to_subscripts
* Converts a list of subscripts to a string. * * Returns -1 on error, the number of characters placed in subscripts * otherwise. */
numpy/core/src/multiarray/multiarraymodule.c:2815
↓ 1 callersFunctioneinsum_path
einsum_path(subscripts, *operands, optimize='greedy') Evaluates the lowest cost contraction order for an einsum expression by considerin
numpy/core/einsumfunc.py:707
↓ 1 callersFunctioneinsum_sub_op_from_lists
* Fills in the subscripts, with maximum size subsize, and op, * with the values in the tuple 'args'. * * Returns -1 on error, number of operands pl
numpy/core/src/multiarray/multiarraymodule.c:2904
↓ 1 callersFunctioneinsum_sub_op_from_str
numpy/core/src/multiarray/multiarraymodule.c:2747
↓ 1 callersFunctionempty
Return a new matrix of given shape and type, without initializing entries. Parameters ---------- shape : int or tuple of int Shap
numpy/matlib.py:24
↓ 1 callersFunctionempty_like
Array API compatible wrapper for :py:func:`np.empty_like <numpy.empty_like>`. See its docstring for more information.
numpy/array_api/_creation_functions.py:116
↓ 1 callersMethodenabled
Is the use of the display value enabled?
numpy/ma/core.py:2400
↓ 1 callersFunctionencode
Calls `str.encode` element-wise. The set of available codecs comes from the Python standard library, and may be extended at runtime. For
numpy/core/defchararray.py:619
↓ 1 callersFunctionencode_unicode_cols
(row_tup)
numpy/lib/npyio.py:2350
↓ 1 callersFunctionendswith
Returns a boolean array which is `True` where the string element in `a` ends with `suffix`, otherwise `False`. Calls `str.endswith` elem
numpy/core/defchararray.py:659
↓ 1 callersFunctionenglish_lower
Apply English case rules to convert ASCII strings to all lower case. This is an internal utility function to replace calls to str.lower() such
numpy/core/_string_helpers.py:16
↓ 1 callersFunctionenglish_upper
Apply English case rules to convert ASCII strings to all upper case. This is an internal utility function to replace calls to str.upper() such
numpy/core/_string_helpers.py:44
↓ 1 callersFunctionensure_decimal_point
* Ensure that buffer has a decimal point in it. The decimal point * will not be in the current locale, it will always be '.' */
numpy/core/src/common/numpyos.c:116
↓ 1 callersFunctionensure_executable
(name)
numpy/linalg/lapack_lite/make_lite.py:280
↓ 1 callersFunctionensure_minimum_exponent_length
* Ensure that any exponent, if present, is at least MIN_EXPONENT_DIGITS * in length. */
numpy/core/src/common/numpyos.c:41
↓ 1 callersFunctioneqmask
(m1, m2)
numpy/ma/tests/test_old_ma.py:869
↓ 1 callersFunctionequal
Array API compatible wrapper for :py:func:`np.equal <numpy.equal>`. See its docstring for more information.
numpy/array_api/_elementwise_functions.py:291
↓ 1 callersFunctionerror_if_matching_control_characters
* A (somewhat verbose) check that none of the control characters match or are * newline. Most of these combinations are completely fine, just weird
numpy/core/src/multiarray/textreading/readtext.c:115
↓ 1 callersFunctioneuclid
* Euclid's algorithm for GCD. * * Solves for gamma*a1 + epsilon*a2 == gcd(a1, a2) * providing |gamma| < |a2|/gcd, |epsilon| < |a1|/gcd. */
numpy/core/src/common/mem_overlap.c:208
↓ 1 callersFunctionexecute_complex
numpy/fft/_pocketfft.c:2195
↓ 1 callersFunctionexecute_real
numpy/fft/_pocketfft.c:2326
↓ 1 callersFunctionexecute_real_backward
numpy/fft/_pocketfft.c:2283
↓ 1 callersFunctionexecute_real_forward
numpy/fft/_pocketfft.c:2230
↓ 1 callersFunctionexecute_ufunc_loop
* The ufunc loop implementation for both normal ufunc calls and masked calls * when the iterator has to be used. * * See `PyUFunc_GenericFunctionIn
numpy/core/src/umath/ufunc_object.c:1456
↓ 1 callersFunctionexpand_sub
(substr, names)
numpy/distutils/from_template.py:130
↓ 1 callersFunctionexpand_sub
(substr, names)
numpy/f2py/_src_pyf.py:126
↓ 1 callersFunctionexpandtabs
Return a copy of each string element where all tab characters are replaced by one or more spaces. Calls `str.expandtabs` element-wise.
numpy/core/defchararray.py:707
↓ 1 callersMethodexpect_baseline
(self, baseline, dispatch="", **kwargs)
numpy/distutils/tests/test_ccompiler_opt.py:196
↓ 1 callersMethodexpect_flags
(self, baseline, dispatch="", **kwargs)
numpy/distutils/tests/test_ccompiler_opt.py:217
↓ 1 callersMethodexpect_target_flags
(self, targets, groups={}, **kwargs)
numpy/distutils/tests/test_ccompiler_opt.py:255
↓ 1 callersFunctionextend_all
(module)
numpy/core/numeric.py:2507
↓ 1 callersFunctionextract_cpuinfo_field
* Extract the content of a the first occurrence of a given field in * the content of /proc/cpuinfo and return it as a heap-allocated * string that m
numpy/core/src/common/npy_cpuinfo_parser.h:132
↓ 1 callersFunctionextract_tarfile_to
Extract TarFile contents under archive_path/ to target_path/
tools/openblas_support.py:214
↓ 1 callersFunctioneye
Array API compatible wrapper for :py:func:`np.eye <numpy.eye>`. See its docstring for more information.
numpy/array_api/_creation_functions.py:132
↓ 1 callersMethodf
(**kw)
numpy/lib/tests/test_function_base.py:1521
↓ 1 callersMethodf
()
numpy/testing/tests/test_utils.py:796
↓ 1 callersFunctionf2cexpr
Rewrite Fortran expression as f2py supported C expression. Due to the lack of a proper expression parser in f2py, this function uses a heuris
numpy/f2py/capi_maps.py:238
↓ 1 callersFunctionf2py_build_generator
(name)
numpy/f2py/_backends/__init__.py:1
↓ 1 callersFunctionf2py_cb_start_clock
numpy/f2py/src/fortranobject.c:611
↓ 1 callersFunctionf2py_cb_stop_clock
numpy/f2py/src/fortranobject.c:622
↓ 1 callersMethodf2py_sources
(self, sources, extension)
numpy/distutils/command/build_src.py:466
↓ 1 callersFunctionf2py_start_clock
numpy/f2py/src/fortranobject.c:583
↓ 1 callersFunctionf2py_stop_clock
numpy/f2py/src/fortranobject.c:594
↓ 1 callersFunctionfadd
(line, s=fhooks)
numpy/f2py/f90mod_rules.py:91
↓ 1 callersFunctionfadd
(line, s=fwrap)
numpy/f2py/common_rules.py:47
↓ 1 callersFunctionfail_if_array_equal
Raises an assertion error if two masked arrays are not equal elementwise.
numpy/ma/testutils.py:230
↓ 1 callersFunctionfb_del
numpy/core/src/multiarray/textreading/stream_pyobject.c:110
↓ 1 callersMethodfeature_c_preprocessor
Generate C preprocessor definitions and include headers of a CPU feature. Parameters ---------- 'feature_name': str
numpy/distutils/ccompiler_opt.py:1662
↓ 1 callersMethodfeature_can_autovec
check if the feature can be auto-vectorized by the compiler
numpy/distutils/ccompiler_opt.py:1609
↓ 1 callersMethodfeature_get_til
same as `feature_implies_c()` but stop collecting implied features when feature's option that provided through parameter 'key
numpy/distutils/ccompiler_opt.py:1484
↓ 1 callersMethodfeature_is_supported
Check if a certain CPU feature is supported by the platform and compiler. Parameters ---------- name : str
numpy/distutils/ccompiler_opt.py:1580
↓ 1 callersMethodfeature_test
Test a certain CPU feature against the compiler through its own check file. Parameters ---------- name : str
numpy/distutils/ccompiler_opt.py:1540
↓ 1 callersMethodfeature_untied
same as 'feature_ahead()' but if both features implied each other and keep the highest interest. Parameters --------
numpy/distutils/ccompiler_opt.py:1443
↓ 1 callersFunctionfft1
(x)
numpy/fft/tests/test_pocketfft.py:11
↓ 1 callersFunctionfield_type_grow_recursive
* Note that the function cleans up `ft` on error. If `num_field_types < 0` * cleanup has already happened in the internal call. */
numpy/core/src/multiarray/textreading/field_types.c:94
↓ 1 callersFunctionfield_types_create
* Prepare the "field_types" for the given dtypes/descriptors. Currently, * we copy the itemsize, but the main thing is that we check for custom * c
numpy/core/src/multiarray/textreading/field_types.c:180
↓ 1 callersFunctionfields_traverse_data_free
traverse data free function */
numpy/core/src/multiarray/dtype_traversal.c:228
↓ 1 callersMethodfillFormat
(self, data)
numpy/core/arrayprint.py:934
↓ 1 callersFunctionfill_arraymethod_from_slots
* Initialize a new BoundArrayMethodObject from slots. Slots which are * not provided may be filled with defaults. * * @param res The new PyBoundAr
numpy/core/src/multiarray/array_method.c:244
↓ 1 callersFunctionfill_command
(args=None)
tools/npy_tempita/__init__.py:1142
↓ 1 callersFunctionfill_first_half
numpy/fft/_pocketfft.c:164
↓ 1 callersFunctionfill_first_quadrant
numpy/fft/_pocketfft.c:151
↓ 1 callersFunctionfill_second_half
numpy/fft/_pocketfft.c:181
↓ 1 callersMethodfilter_py_files
(self, sources)
numpy/distutils/command/build_src.py:390
↓ 1 callersMethodfinalize_options
(self)
numpy/distutils/command/build_src.py:82
↓ 1 callersMethodfinalize_options
(self)
numpy/distutils/command/install_clib.py:15
↓ 1 callersMethodfinalize_string
(self, s)
numpy/f2py/symbolic.py:1309
↓ 1 callersFunctionfind
For each element, return the lowest index in the string where substring `sub` is found. Calls `str.find` element-wise. For each ele
numpy/core/defchararray.py:743
↓ 1 callersFunctionfind_addr
* linear search pointer in table * number of pointers is usually quite small but if a performance impact can be * measured this could be converted t
numpy/core/src/multiarray/temp_elide.c:100
↓ 1 callersFunctionfind_and_remove_repl_patterns
(astr)
numpy/distutils/from_template.py:99
↓ 1 callersFunctionfind_and_remove_repl_patterns
(astr)
numpy/f2py/_src_pyf.py:95
↓ 1 callersFunctionfind_comma_decimal_point_locale
See if platform has a decimal point as comma locale. Find a locale that uses a comma instead of a period as the decimal point. Returns
numpy/core/tests/_locales.py:12
↓ 1 callersFunctionfind_dll
(dll_name)
numpy/distutils/mingw32ccompiler.py:256
↓ 1 callersFunctionfind_duplicate
Find duplication in a list, return a list of duplicated elements
numpy/core/records.py:78
↓ 1 callersFunctionfind_earliest_holiday_after
* Finds the earliest holiday which is after 'date'. If 'date' does not * appear within the holiday range, returns 'holidays_begin' if 'date' * is be
numpy/core/src/multiarray/datetime_busday.c:128
↓ 1 callersFunctionfind_first_negative_dimension
numpy/f2py/src/fortranobject.c:726
↓ 1 callersFunctionfind_functions
Scan the file, looking for tagged functions. Assuming ``tag=='API'``, a tagged function looks like:: /*API*/ static returnt
numpy/core/code_generators/genapi.py:217
↓ 1 callersFunctionfind_missing
(module_name)
tools/functions_missing_types.py:97
↓ 1 callersFunctionfind_names
Finds the occurrences of function names, special directives like data and functions and scipy constants in the docstrings of `module`. The
tools/refguide_check.py:182
↓ 1 callersFunctionfind_object_datetime64_meta
* Recursively determines the metadata for an NPY_DATETIME dtype. * * Returns 0 on success, -1 on failure. */
numpy/core/src/multiarray/datetime.c:3580
↓ 1 callersFunctionfind_object_datetime_type
* Examines all the objects in the given Python object by * recursively descending the sequence structure. Returns a * datetime or timedelta type wit
numpy/core/src/multiarray/datetime.c:3722
↓ 1 callersFunctionfind_object_timedelta64_meta
* Recursively determines the metadata for an NPY_TIMEDELTA dtype. * * Returns 0 on success, -1 on failure. */
numpy/core/src/multiarray/datetime.c:3687
↓ 1 callersFunctionfind_position
Given a string and index, return (line, column)
tools/npy_tempita/__init__.py:765
↓ 1 callersFunctionfind_process_files
(root_dir)
tools/cythonize.py:167
↓ 1 callersFunctionfind_scalar_descriptor
* Discover the correct descriptor from a known DType class and scalar. * If the fixed DType can discover a dtype instance/descr all is fine, * if it
numpy/core/src/multiarray/array_coercion.c:350
↓ 1 callersFunctionfind_string_array_datetime64_type
* Examines all the strings in the given string array, and parses them * to find the right metadata. * * Returns 0 on success, -1 on failure. */
numpy/core/src/multiarray/datetime.c:3458
← previousnext →3,501–3,600 of 17,008, ranked by callers