m2_utility: Utility tools for M2

Description Usage Arguments Examples

Description

Utility tools for M2

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
m2_name(x)

m2_name(x) <- value

m2_meta(x, m2_attr)

m2_meta(x, m2_attr) <- value

m2_structure(x = NA, m2_name, m2_class, m2_meta, base_class)

m2_exists(name)

m2_ls(all.names = FALSE)

m2_rm(name)

m2_getwd()

Arguments

x

an object of class m2

value

the value to assign

m2_attr

the name of an M2 attribute

m2_name

m2_name M2 attribute

m2_class

m2_class M2 attribute

m2_meta

m2_meta M2 attribute

base_class

a base class; an R class to use for dispatching if there is no relevant method for the other classes (e.g. m2)

name

a string; the name of a M2 object

all.names

if TRUE, all registered Macaulay2 variables, including ones internally used by m2r, will be returned

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
## Not run:  requires Macaulay2

m2("a = 5")
m2_ls()
m2_exists("a")
m2("b = 1")
m2_exists(c("a","b","c"))

m2_getwd()

x <- 1
class(x) <- "m2"
attr(x, "m2_meta") <- list(a = 1, b = 2)
m2_meta(x)
m2_meta(x, "b")
m2_meta(x, "b") <- 5
m2_meta(x, "b")

# R <- ring(c("x1", "x2", "x3"))
# m2_name(R)
# m2(sprintf("class %s", m2_name(R)))
# m2_ls()
# m2_rm(m2_name(R))
# m2_ls()
# m2(paste("class", m2_name(R)))

m2_ls()
m2_ls(all.names = TRUE)



## End(Not run)

musicman3320/m2r documentation built on May 31, 2020, 11:16 p.m.