Decorator for handling Numpy errors.
Parameters: | **kwargs (**) – Keywords arguments. |
---|---|
Return type: | object |
References
[1] | Kienzle, P., Patel, N., & Krycka, J. (2011). refl1d.numpyerrors - Refl1D v0.6.19 documentation. Retrieved January 30, 2015, from http://www.reflectometry.org/danse/docs/refl1d/_modules/refl1d/numpyerrors.html |
Examples
>>> import numpy
>>> @handle_numpy_errors(all='ignore')
... def f():
... 1 / numpy.zeros(3)
>>> f()
Decorator for ignoring Python warnings.
Parameters: | function (object) – Object to decorate. |
---|---|
Return type: | object |
Examples
>>> @ignore_python_warnings
... def f():
... warnings.warn('This is an ignored warning!')
>>> f()
Returns a batch generator from given iterable.
Parameters: |
|
---|---|
Returns: | Is string_like variable. |
Return type: | bool |
Examples
>>> batch(tuple(range(10)))
<generator object batch at 0x...>
Returns if OpenImageIO is installed and available.
Parameters: | raise_exception (bool) – Raise exception if OpenImageIO is unavailable. |
---|---|
Returns: | Is OpenImageIO installed. |
Return type: | bool |
Raises: | ImportError – If OpenImageIO is not installed. |
Returns if scipy is installed and available.
Parameters: | raise_exception (bool) – Raise exception if scipy is unavailable. |
---|---|
Returns: | Is scipy installed. |
Return type: | bool |
Raises: | ImportError – If scipy is not installed. |
Returns if given \(x\) variable is iterable.
Parameters: | x (object) – Variable to check the iterability. |
---|---|
Returns: | \(x\) variable iterability. |
Return type: | bool |
Examples
>>> is_iterable([1, 2, 3])
True
>>> is_iterable(1)
False
Returns if given data is a string_like variable.
Parameters: | data (object) – Data to test. |
---|---|
Returns: | Is string_like variable. |
Return type: | bool |
Examples
>>> is_string('I`m a string!')
True
>>> is_string(['I`m a string!'])
False
Returns if given \(x\) variable is a number.
Parameters: | x (object) – Variable to check. |
---|---|
Returns: | Is \(x\) variable a number. |
Return type: | bool |
See also
Examples
>>> is_numeric(1)
True
>>> is_numeric((1,))
False
Returns if given \(x\) variable is an integer under given threshold.
Parameters: | x (object) – Variable to check. |
---|---|
Returns: | Is \(x\) variable an integer. |
Return type: | bool |
Notes
See also
Examples
>>> is_integer(1)
True
>>> is_integer(1.01)
False
Converts given \(x\) variable to numeric. In the event where \(x\) cannot be converted, it is passed as is.
Parameters: | x (object) – Variable to convert. |
---|---|
Returns: | \(x\) variable converted to numeric. |
Return type: | ndarray |
See also
as_stack(), as_shape(), auto_axis()
Examples
>>> as_numeric(np.array([1]))
1.0
>>> as_numeric(np.arange(10))
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
Returns closest \(y\) variable element to reference \(x\) variable.
Parameters: |
|
---|---|
Returns: | Closest \(y\) variable element. |
Return type: | numeric |
Examples
>>> y = np.array([24.31357115,
... 63.62396289,
... 55.71528816,
... 62.70988028,
... 46.84480573,
... 25.40026416])
>>> closest(y, 63)
62.70988028
Normalises given array_like \(x\) variable values and optionally clip them between.
Parameters: |
|
---|---|
Returns: | Normalised \(x\) variable. |
Return type: | ndarray |
Examples
>>> x = np.array([0.48224885, 0.31651974, 0.22070513])
>>> normalise(x)
array([ 1. , 0.6563411..., 0.4576581...])
Returns the steps of given distribution.
Parameters: | distribution (array_like) – Distribution to retrieve the steps. |
---|---|
Returns: | Distribution steps. |
Return type: | ndarray |
Examples
Uniformly spaced variable:
>>> y = np.array([1, 2, 3, 4, 5])
>>> steps(y)
array([1])
Non-uniformly spaced variable:
>>> y = np.array([1, 2, 3, 4, 8])
>>> steps(y)
array([1, 4])
Returns if given distribution is uniform.
Parameters: | distribution (array_like) – Distribution to check for uniformity. |
---|---|
Returns: | Is distribution uniform. |
Return type: | bool |
Examples
Uniformly spaced variable:
>>> y = np.array([1, 2, 3, 4, 5])
>>> is_uniform(y)
True
Non-uniformly spaced variable:
>>> y = np.array([1, 2, 3.1415, 4, 5])
>>> is_uniform(y)
False
Tests whether each element of an array is also present in a second array within given tolerance.
Parameters: |
|
---|---|
Returns: | A boolean array with a shape describing whether an element of a is present in b within given tolerance. |
Return type: | ndarray |
References
[1] | Yorke, R. (2014). Python: Change format of np.array or allow tolerance in in1d function. Retrieved March 27, 2015, from http://stackoverflow.com/a/23521245/931625 |
Examples
>>> a = np.array([0.50, 0.60])
>>> b = np.linspace(0, 10, 101)
>>> np.in1d(a, b)
array([ True, False], dtype=bool)
>>> in_array(a, b)
array([ True, True], dtype=bool)
Stacks arrays in sequence along the last axis (tail).
Rebuilds arrays divided by tsplit().
Parameters: | a (array_like) – Array to perform the stacking. |
---|---|
Return type: | ndarray |
See also
Examples
>>> a = 0
>>> tstack((a, a, a))
array([0, 0, 0])
>>> a = np.arange(0, 6)
>>> tstack((a, a, a))
array([[0, 0, 0],
[1, 1, 1],
[2, 2, 2],
[3, 3, 3],
[4, 4, 4],
[5, 5, 5]])
>>> a = np.reshape(a, (1, 6))
>>> tstack((a, a, a))
array([[[0, 0, 0],
[1, 1, 1],
[2, 2, 2],
[3, 3, 3],
[4, 4, 4],
[5, 5, 5]]])
>>> a = np.reshape(a, (1, 1, 6))
>>> tstack((a, a, a))
array([[[[0, 0, 0],
[1, 1, 1],
[2, 2, 2],
[3, 3, 3],
[4, 4, 4],
[5, 5, 5]]]])
Splits arrays in sequence along the last axis (tail).
Parameters: | a (array_like) – Array to perform the splitting. |
---|---|
Return type: | ndarray |
See also
Examples
>>> a = np.array([0, 0, 0])
>>> tsplit(a)
array([0, 0, 0])
>>> a = np.array([[0, 0, 0],
... [1, 1, 1],
... [2, 2, 2],
... [3, 3, 3],
... [4, 4, 4],
... [5, 5, 5]])
>>> tsplit(a)
array([[0, 1, 2, 3, 4, 5],
[0, 1, 2, 3, 4, 5],
[0, 1, 2, 3, 4, 5]])
>>> a = np.array([[[0, 0, 0],
... [1, 1, 1],
... [2, 2, 2],
... [3, 3, 3],
... [4, 4, 4],
... [5, 5, 5]]])
>>> tsplit(a)
array([[[0, 1, 2, 3, 4, 5]],
[[0, 1, 2, 3, 4, 5]],
[[0, 1, 2, 3, 4, 5]]])
Returns the per row diagonal matrices of the given array.
Parameters: | a (array_like) – Array to perform the diagonal matrices computation. |
---|---|
Return type: | ndarray |
References
[1] | Castro, S. (2014). Numpy: Fastest way of computing diagonal for each row of a 2d array. Retrieved August 22, 2014, from http://stackoverflow.com/questions/26511401/numpy-fastest-way-of-computing-diagonal-for-each-row-of-a-2d-array/26517247#26517247 |
Examples
>>> a = np.array([[0.25891593, 0.07299478, 0.36586996],
... [0.30851087, 0.37131459, 0.16274825],
... [0.71061831, 0.67718718, 0.09562581],
... [0.71588836, 0.76772047, 0.15476079],
... [0.92985142, 0.22263399, 0.88027331]])
>>> row_as_diagonal(a)
array([[[ 0.25891593, 0. , 0. ],
[ 0. , 0.07299478, 0. ],
[ 0. , 0. , 0.36586996]],
[[ 0.30851087, 0. , 0. ],
[ 0. , 0.37131459, 0. ],
[ 0. , 0. , 0.16274825]],
[[ 0.71061831, 0. , 0. ],
[ 0. , 0.67718718, 0. ],
[ 0. , 0. , 0.09562581]],
[[ 0.71588836, 0. , 0. ],
[ 0. , 0.76772047, 0. ],
[ 0. , 0. , 0.15476079]],
[[ 0.92985142, 0. , 0. ],
[ 0. , 0.22263399, 0. ],
[ 0. , 0. , 0.88027331]]])
Convenient wrapper around np.einsum() with the following subscripts: ‘...ij,...j->...i’.
It performs the dot product of two arrays where m parameter is expected to be an array of 3x3 matrices and parameter v an array of vectors.
Parameters: |
|
---|---|
Return type: | ndarray |
See also
Examples
>>> m = np.array([[0.7328, 0.4296, -0.1624],
... [-0.7036, 1.6975, 0.0061],
... [0.0030, 0.0136, 0.9834]])
>>> m = np.reshape(np.tile(m, (6, 1)), (6, 3, 3))
>>> v = np.array([0.07049534, 0.10080000, 0.09558313])
>>> v = np.tile(v, (6, 1))
>>> dot_vector(m, v)
array([[ 0.0794399..., 0.1220905..., 0.0955788...],
[ 0.0794399..., 0.1220905..., 0.0955788...],
[ 0.0794399..., 0.1220905..., 0.0955788...],
[ 0.0794399..., 0.1220905..., 0.0955788...],
[ 0.0794399..., 0.1220905..., 0.0955788...],
[ 0.0794399..., 0.1220905..., 0.0955788...]])
Convenient wrapper around np.einsum() with the following subscripts: ‘...ij,...jk->...ik’.
It performs the dot product of two arrays where a parameter is expected to be an array of 3x3 matrices and parameter b another array of of 3x3 matrices.
Parameters: |
|
---|---|
Return type: | ndarray |
See also
Examples
>>> a = np.array([[0.7328, 0.4296, -0.1624],
... [-0.7036, 1.6975, 0.0061],
... [0.0030, 0.0136, 0.9834]])
>>> a = np.reshape(np.tile(a, (6, 1)), (6, 3, 3))
>>> b = a
>>> dot_matrix(a, b)
array([[[ 0.2342420..., 1.0418482..., -0.2760903...],
[-1.7099407..., 2.5793226..., 0.1306181...],
[-0.0044203..., 0.0377490..., 0.9666713...]],
[[ 0.2342420..., 1.0418482..., -0.2760903...],
[-1.7099407..., 2.5793226..., 0.1306181...],
[-0.0044203..., 0.0377490..., 0.9666713...]],
[[ 0.2342420..., 1.0418482..., -0.2760903...],
[-1.7099407..., 2.5793226..., 0.1306181...],
[-0.0044203..., 0.0377490..., 0.9666713...]],
[[ 0.2342420..., 1.0418482..., -0.2760903...],
[-1.7099407..., 2.5793226..., 0.1306181...],
[-0.0044203..., 0.0377490..., 0.9666713...]],
[[ 0.2342420..., 1.0418482..., -0.2760903...],
[-1.7099407..., 2.5793226..., 0.1306181...],
[-0.0044203..., 0.0377490..., 0.9666713...]],
[[ 0.2342420..., 1.0418482..., -0.2760903...],
[-1.7099407..., 2.5793226..., 0.1306181...],
[-0.0044203..., 0.0377490..., 0.9666713...]]])
Bases: _abcoll.MutableMapping
Implements a mutable mapping / dict like object where numeric keys are stored with an arbitrary precision.
Parameters: |
|
---|
Examples
>>> data1 = {0.1999999998: 'Nemo', 0.2000000000: 'John'}
>>> apm1 = ArbitraryPrecisionMapping(data1, key_decimals=10)
>>> # Doctests skip for Python 2.x compatibility.
>>> tuple(apm1.keys())
(0.1999999998, 0.2)
>>> apm2 = ArbitraryPrecisionMapping(data1, key_decimals=7)
>>> # Doctests skip for Python 2.x compatibility.
>>> tuple(apm2.keys())
(0.2,)
Returns if the mapping contains given item (rounded if numeric).
Parameters: | item (unicode) – Item (rounded if numeric) name. |
---|---|
Returns: | Is item in mapping. |
Return type: | bool |
Notes
Deletes the item (rounded if numeric) with given value.
Parameters: | item (unicode) – Item (rounded if numeric) name. |
---|
Notes
Returns the value of given item (rounded if numeric).
Parameters: | item (unicode) – Item (rounded if numeric) name. |
---|---|
Returns: | Item value. |
Return type: | object |
Notes
Iterates over the items (rounded if numeric) names in the mapping.
Returns: | Item names. |
---|---|
Return type: | generator |
Notes
Returns the items count.
Returns: | Items count. |
---|---|
Return type: | int |
Notes
Sets given item (rounded if numeric) with given value.
Parameters: |
|
---|---|
Returns: | Item value (rounded if numeric). |
Return type: | object |
Notes
Property for self.__key_decimals private attribute.
Returns: | self.__key_decimals. |
---|---|
Return type: | unicode |
Bases: dict
Extends dict type to provide a lookup by value(s).
References
[2] | Mansencal, T. (n.d.). Lookup. Retrieved from https://github.com/KelSolaar/Foundations/blob/develop/foundations/data_structures.py |
Examples
>>> person = Lookup(first_name='Doe', last_name='John', gender='male')
>>> person.first_key_from_value('Doe')
'first_name'
>>> persons = Lookup(John='Doe', Jane='Doe', Luke='Skywalker')
>>> sorted(persons.keys_from_value('Doe'))
['Jane', 'John']
Gets the first key with given value.
Parameters: | value (object) – Value. |
---|---|
Returns: | Key. |
Return type: | object |
Gets the keys with given value.
Parameters: | value (object) – Value. |
---|---|
Returns: | Keys. |
Return type: | object |
Bases: dict
Defines an object similar to C/C++ structured type.
Parameters: |
|
---|
References
[1] | Mansencal, T. (n.d.). Structure. Retrieved from https://github.com/KelSolaar/Foundations/blob/develop/foundations/data_structures.py |
Examples
>>> person = Structure(first_name='Doe', last_name='John', gender='male')
>>> # Doctests skip for Python 2.x compatibility.
>>> person.first_name
'Doe'
>>> sorted(person.keys())
['first_name', 'gender', 'last_name']
>>> # Doctests skip for Python 2.x compatibility.
>>> person['gender']
'male'
Deletes both key and sibling attribute.
Parameters: | attribute (object) – Attribute. |
---|
Notes
Deletes both key and sibling attribute.
Parameters: | attribute (object) – Attribute. |
---|
Notes
Returns given attribute value.
Parameters: | attribute (unicode) – Attribute name. |
---|
Notes
Returns: | Attribute value. |
---|---|
Return type: | object |
Raises: | AttributeError – If the attribute is not defined. |
Sets both key and sibling attribute with given value.
Parameters: |
|
---|
Notes
Sets both key and sibling attribute with given value.
Parameters: |
|
---|
Notes
Updates both keys and sibling attributes.
Parameters: |
|
---|
Notes
Bases: _abcoll.MutableMapping
Implements a case-insensitive mutable mapping / dict object.
Allows values retrieving from keys while ignoring the key case. The keys are expected to be unicode or string-like objects supporting the str.lower() method.
Parameters: |
|
---|
Warning
The keys are expected to be unicode or string-like objects.
References
[3] | Reitz, K. (n.d.). CaseInsensitiveDict. Retrieved from https://github.com/kennethreitz/requests/blob/v1.2.3/requests/structures.py#L37 |
Examples
>>> methods = CaseInsensitiveMapping({'McCamy': 1, 'Hernandez': 2})
>>> methods['mccamy']
1
Returns if the mapping contains given item.
Parameters: | item (unicode) – Item name. |
---|---|
Returns: | Is item in mapping. |
Return type: | bool |
Notes
Deletes the item with given name.
The item is deleted from the mapping using its lower name.
Parameters: | item (unicode) – Item name. |
---|
Notes
Returns the equality with given object.
Parameters: | item – Object item. |
---|---|
Returns: | Equality. |
Return type: | bool |
Notes
Returns the value of given item.
The item value is retrieved using its lower name in the mapping.
Parameters: | item (unicode) – Item name. |
---|---|
Returns: | Item value. |
Return type: | object |
Notes
Iterates over the items names in the mapping.
The item names returned are the original input ones.
Returns: | Item names. |
---|---|
Return type: | generator |
Notes
Returns the items count.
Returns: | Items count. |
---|---|
Return type: | int |
Notes
Returns the inequality with given object.
Parameters: | item – Object item. |
---|---|
Returns: | Inequality. |
Return type: | bool |
Notes
Returns the mapping representation with the original item names.
Returns: | Mapping representation. |
---|---|
Return type: | unicode |
Notes
Sets given item with given value.
The item is stored as lower in the mapping while the original name and its value are stored together as the value in a tuple:
{“item.lower()”: (“item”, value)}
Parameters: |
|
---|
Notes
Returns a copy of the mapping.
Returns: | Mapping copy. |
---|---|
Return type: | CaseInsensitiveMapping |
Notes
Iterates over the lower items names.
Returns: | Lower item names. |
---|---|
Return type: | generator |
Prints a message inside a box.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> message = ('Lorem ipsum dolor sit amet, consectetur adipiscing elit, '
... 'sed do eiusmod tempor incididunt ut labore et dolore magna '
... 'aliqua.')
>>> message_box(message, width=75)
===========================================================================
* *
* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do *
* eiusmod tempor incididunt ut labore et dolore magna aliqua. *
* *
===========================================================================
True
>>> message_box(message, width=60)
============================================================
* *
* Lorem ipsum dolor sit amet, consectetur adipiscing *
* elit, sed do eiusmod tempor incididunt ut labore et *
* dolore magna aliqua. *
* *
============================================================
True
>>> message_box(message, width=75, padding=16)
===========================================================================
* *
* Lorem ipsum dolor sit amet, consectetur *
* adipiscing elit, sed do eiusmod tempor *
* incididunt ut labore et dolore magna *
* aliqua. *
* *
===========================================================================
True
Issues a warning.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> colour.utilities.warning('This is a warning!')
/Users/.../colour/utilities/verbose.py:42: UserWarning: This is a warning!