Learn R Programming

cry (version 0.5.2)

check_angle_validity: Validity and compatibility of a cry object of class 'angle'

Description

An object of class 'angle' is a numeric with logical attribute "rad_flag".

Usage

check_angle_validity(x, message = FALSE)

Value

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

Arguments

x

Object of class angle.

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 angle
x <- angle(80)

# Check its validity
check_angle_validity(x)

# Modify the 'rad_flag' attribute
attr(x,"rad_flag") <- 12.5

# Check its validity
check_angle_validity(x,TRUE)

Run the code above in your browser using DataLab