get.attr.gdsn {gdsfmt} | R Documentation |
Get the attributes of a GDS node.
get.attr.gdsn(node)
node |
an object of class |
A list of attributes.
Xiuwen Zheng
http://github.com/zhengxwen/gdsfmt
put.attr.gdsn
, delete.attr.gdsn
# cteate a GDS file f <- createfn.gds("test.gds") node <- add.gdsn(f, "int", val=1:10000) put.attr.gdsn(node, "missing.value", 10000) f get.attr.gdsn(node) # close the GDS file closefn.gds(f) # delete the temporary file unlink("test.gds", force=TRUE)