full_symm_strings | R Documentation |
This function returns the full set of symmetry operations in human-readable form, each one as a character string starting with 'SYMM'. These are the common crystallographic symmetry operations.
full_symm_strings(SG)
SG |
A character string. The extended Hermann-Mauguin symbol (e.g. 'P 1 1 21') |
Symm_string A character vector whose components are strings starting by 'SYMM' and containing the symmetry operations of the given group in human-readable form.
# P1 has only one symmetry operation SG <- "P 1" symm_string <- full_symm_strings(SG) print(symm_string) # P 21 21 21 is has many more operations SG <- "P 21 21 21" symm_string <- full_symm_strings(SG) print(symm_string)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.