| unload.gdsn {gdsfmt} | R Documentation |
Unload a specified GDS node.
unload.gdsn(node)
node |
an object of class |
None.
Xiuwen Zheng
http://github.com/zhengxwen/gdsfmt
# cteate a GDS file
f <- createfn.gds("test.gds")
# add a list to "test.gds"
node <- add.gdsn(f, "val", 1:1000)
node
## Not run:
unload.gdsn(node)
# Error in print.gdsn.class(x): Invalid GDS node object (it was unloaded or deleted).
node
## End(Not run)
index.gdsn(f, "val")
# close the GDS file
closefn.gds(f)
# delete the temporary file
unlink("test.gds", force=TRUE)