#' plist
#'
#' Turn a pauli (pauli_d) object to a list of frames within the object
#'
#' @param x pauli (pauli_d) object
#'
#' @return List of the individual pauli frames
#' @export
#'
#' @examples
#' pf <- pauli()
#' plist(pf)
plist <- function(x){
p_list <- list(x$sig0, x$sig1, x$sig2, x$sig3)
return(p_list)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.