mergeexperiment
Callisto
I have to questions concerning "mergeexperiment".
1)
Why does
string cmd = ""
sprintf cmd, "MERGEEXPERIMENT /Q %s", (S_path+S_fileName)
Execute cmd
sprintf cmd, "MERGEEXPERIMENT /Q %s", (S_path+S_fileName)
Execute cmd
not work but only:
string cmd = ""
sprintf cmd, "MERGEEXPERIMENT /Q %s", (S_path+S_fileName)
Execute /P cmd
sprintf cmd, "MERGEEXPERIMENT /Q %s", (S_path+S_fileName)
Execute /P cmd
(notice the /P after excecute).
2.)
I try to load several *.pxt data files this way. All these files contain a single wave. Is there a way how to obatin the wave name and directory where it was saved in the project? After merging a single *.pxt into the experiment I would like to do some automatic manipulation on the wave.
Thanks.
2) Not really- think of the general situation where you have lots of waves and data folders. You could do a recursive check of all data folders and their children. Maybe better would be to save the wave into a binary wave file (.bwav). Then you can just load it with LoadWaves.
John Weeks
WaveMetrics, Inc.
support@wavemetrics.com
December 2, 2014 at 01:36 pm - Permalink
December 3, 2014 at 12:51 am - Permalink
Thank you, this helped. Actually I was not aware that I could load the *.pxt data this way.
Another question: Can I open a *.pxt make some changes and save it again to *.pxt?
December 5, 2014 at 04:21 pm - Permalink
SaveData
operation.December 6, 2014 at 01:22 pm - Permalink
Yes but you have to do a Save As.
December 6, 2014 at 06:59 pm - Permalink
December 8, 2014 at 08:51 am - Permalink