Loading data
saeed
I Load my data from one path with this code:
Function Parameters()
GBLoadWave "D:DATA:Parameters.txt"
But I have two questions:
1. How can I show my data in one table ?(I use new table and I see my data in table but it is not update) I like that this datas appeare and update when my code is execute.
2. In another part of my code I need this number The above-mentioned. So how can I call this number frome table in anather part of my code?
Regards
edit wave0
orAppendToTable wave0
.2) I don't quite understand what you mean by "this number", but assuming you want to work on wave0 in another function you need to create a wave reference. Execute
DisplayHelpTopic "Accessing waves in functions"
February 14, 2014 at 12:14 am - Permalink
I did and I can see my datas in table and it is great but it is not update the datas, when My datas change, it shows previous datas!
This is my code:
GBLoadWave/N=Trap_p "D:DATA:Parameters.txt"
Edit /N=Trap_p
AppendToTable Trap_p
February 14, 2014 at 04:40 pm - Permalink
February 14, 2014 at 07:00 pm - Permalink
My datas are like :
17000000.000
500.000
6.000
0.000
0.000
81.000
91.000
Thanks
February 18, 2014 at 11:09 am - Permalink
That looks like text data to me.
Perhaps you need LoadWave, instead. Or just try using the Load Waves... menu.
--Jim Prouty
Software Engineer, WaveMetrics, Inc.
February 18, 2014 at 02:53 pm - Permalink