symmetrise#
- Miller.symmetrise(unique: bool = False, return_multiplicity: bool = False, return_index: bool = False) Union[Miller, Tuple[Miller, ndarray], Tuple[Miller, ndarray, ndarray]][source]#
Return vectors symmetrically equivalent to the vectors.
- Parameters:
- unique
Whether to return only unique vectors. Default is
False.- return_multiplicity
Whether to return the multiplicity of each vector. Default is
False.- return_index
Whether to return the index into the vectors for the returned symmetrically equivalent vectors. Default is
False.
- Returns:
millFlattened symmetrically equivalent vectors.
multiplicityMultiplicity of each vector. Returned if
return_multiplicity=True.idxIndex into the vectors for the returned symmetrically equivalent vectors. Returned if
return_index=True.