Description Usage Arguments Value Author(s) References See Also Examples
Copy GDS node(s) to a folder with a new name
1 | copyto.gdsn(node, source, name=NULL)
|
node |
a folder of class |
source |
an object of class |
name |
a specified name; if |
None.
Xiuwen Zheng
http://github.com/zhengxwen/gdsfmt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # cteate a GDS file
f <- createfn.gds("test.gds")
add.gdsn(f, "label", NULL)
add.gdsn(f, "int", 1:100, compress="ZIP", closezip=TRUE)
add.gdsn(f, "int.matrix", matrix(1:100, nrow=20))
addfolder.gdsn(f, "folder1")
addfolder.gdsn(f, "folder2")
for (nm in c("label", "int", "int.matrix"))
copyto.gdsn(index.gdsn(f, "folder1"), index.gdsn(f, nm))
f
copyto.gdsn(index.gdsn(f, "folder2"), index.gdsn(f, "folder1"))
f
# close the GDS file
closefn.gds(f)
# delete the temporary file
unlink("test.gds", force=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.