creating text wave from two waves
epiphenom
Example waves:
xel[0]= {8.22328,10.4223}
yel[0]= {13.397,25.3365}
basically the resultant wave (time_in_minsess) should return
8:13
10:25
however I'm getting a wave with 8:13 then 10:25 repeated 127 times (i.e. 128 numbers long)
I'm also getting an index out of range error for xel even though the wave time_in_minsess is created
Here is a code snippet that I'm having difficulty with:
Make /O/T = (numpnts(xel)) time_in_minsess
time_in_minsess = num2str (floor(xel)) + ":" + (num2str(round(yel)))
time_in_minsess = num2str (floor(xel)) + ":" + (num2str(round(yel)))
--Jim Prouty
Software Engineer, WaveMetrics, Inc.
December 16, 2014 at 09:49 pm - Permalink
/N
flag, which is used to define the number of points.If you are unsure about the use of flags for a specific command, you can look up the list of possible parameters in the 'Command Help' part of the help browser quickly.
December 17, 2014 at 01:16 am - Permalink
December 17, 2014 at 07:50 am - Permalink