Description Usage Arguments Details Value Author(s) References See Also Examples
Rename a GDS node.
| 1 | rename.gdsn(node, newname)
 | 
| node | an object of class  | 
| newname | the new name of a specified node | 
CoreArray hierarchical structure does not allow duplicate names in the same folder.
None.
Xiuwen Zheng
http://github.com/zhengxwen/gdsfmt
name.gdsn, ls.gdsn,
index.gdsn
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # cteate a GDS file
f <- createfn.gds("test.gds")
n <- add.gdsn(f, "old.name", val=1:10)
f
rename.gdsn(n, "new.name")
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.