sisl.physics.Coefficient
- class sisl.physics.Coefficient
Bases:
ParentContainer
An object holding coefficients for a parent with info
- Parameters:
Methods
copy
()Return a copy (only the coefficients are copied).
degenerate
(atol)Find degenerate coefficients with a specified precision
iter
([asarray])An iterator looping over the coefficients in this system
remove
(index[, inplace])Return a new coefficient without the specified coefficients
sub
(index[, inplace])Return a new coefficient with only the specified coefficients
Attributes
The data-type of the coefficient (in str)
Data-type for the coefficients
Returns the shape of the coefficients
- copy()
Return a copy (only the coefficients are copied).
parent
andinfo
are passed by reference- Parameters:
coefficient (Coefficient)
- Return type:
- degenerate(atol)[source]
Find degenerate coefficients with a specified precision
- Parameters:
atol (float) – the precision above which coefficients are not considered degenerate
- Returns:
a list of indices
- Return type:
- iter(asarray=False)[source]
An iterator looping over the coefficients in this system
- Parameters:
asarray (
bool
, optional) – if true the yielded values are the coefficient vectors, i.e. a numpy array. Otherwise an equivalent object is yielded.- Yields:
coeff (
Coefficent
) – the current coefficent as an object, only returned if asarray is false.coeff (
numpy.ndarray
) – the current the coefficient as an array, only returned if asarray is true.
- remove(index, inplace=False)
Return a new coefficient without the specified coefficients
- Parameters:
- Returns:
a new coefficient without containing the requested elements
- Return type:
- sub(index, inplace=False)
Return a new coefficient with only the specified coefficients
- Parameters:
- Returns:
a new coefficient only containing the requested elements, only if inplace is false
- Return type:
- c
- property dkind
The data-type of the coefficient (in str)
- property dtype
Data-type for the coefficients
- info
- parent
- property shape
Returns the shape of the coefficients