spnSaveGrp {spectrino} | R Documentation |
Save Grp group as GFilename file. The most common use is with GFilename="", to save the group under its proper name.
spnSaveGrp(Grp,GFilename)
Grp |
- the name(character string) or the index(integer) of the group; |
GFilename |
- character string. The path of GFilename of is ignored, because any group file must be in the same directory as the specs in it. |
spnSaveGrp
returns the full name of saved spec-group, except for Grp="*".
Teodor Krastev
spnOpenGrp , spnSaveTree
# Initialization of Spectrino spnNew() # generate test set spnOpenTree("<test>") # save second group under its name; s1 <- spnSaveGrp(2,"") # rename "Test2" group to "gassew" and then save it; s2 <- spnSaveGrp("Test2","gassew") # save all the groups under their proper names; spnSaveGrp("*","") # Release of Spectrino spnFree(TRUE)