R/cartan.R

Defines functions `cartan_inverse` `cartan`

`cartan` <- function(C,n=1){
    stopifnot(n>0)
    as.clifford(c_cartan(
        L = terms(C), c = coeffs(C),
        m = maxyterm(C),
        n = n))
}

`cartan_inverse` <- function(C,n=1){

    stopifnot(n>0)
    as.clifford(c_cartan_inverse(
        L = terms(C), c = coeffs(C),
        m = maxyterm(C),
        n = n))
}

Try the clifford package in your browser

Any scripts or data that you put into this service are public.

clifford documentation built on Aug. 14, 2022, 1:05 a.m.