Learn R Programming

cry (version 0.5.2)

check_unit_cell_validity: Validity and compatibility of a cry object of class 'unit_cell'

Description

An object of class 'unit_cell' is a named list of length 6. The first three fields are numeric, the last three of class 'angle'.

Usage

check_unit_cell_validity(x, message = FALSE)

Value

ans A logical value. TRUE means that the input is a valid object of class'unit_cell'.

Arguments

x

Object of class 'unit_cell'.

message

A logical variable. If TRUE, the function prints a message on the errors, if any (default is FALSE, i.e. no message printed).

Examples

Run this code
# Create an object of class 'unit_cell'
x <- create_unit_cell()

# Check its validity
check_unit_cell_validity(x)

# Now change a field
x$alpha <- 123

# Check validity again
check_unit_cell_validity(x,TRUE)

Run the code above in your browser using DataLab