KurtB Does this help? Make/N=(10) wData wData[] = p wavestats wData print V_sdev 3.02765 printf "%.15f\r", V_sdev 3.027650354097492 Log in or register to post comments August 18, 2020 at 08:27 am - Permalink
KZarzana Print/D will also work well. Print pi 3.14159 Print/D pi 3.14159265358979 Log in or register to post comments August 18, 2020 at 11:46 am - Permalink
ggermer Thanks a lot, that helped! Could I add a little more question about wavestats: What happens to the location outputs if there are multiple minima or maxima? Log in or register to post comments August 18, 2020 at 12:42 pm - Permalink
KurtB Why not try it? Make/O wData = {0,0,1,0,1,0} WaveStats wData V_npnts= 6; V_numNaNs= 0; V_numINFs= 0; V_avg= 0.333333; V_Sum= 2; V_sdev= 0.516398; V_sem= 0.210819; V_rms= 0.57735; V_adev= 0.444444; V_skew= 0.537914; V_kurt= -1.95833; V_minloc= 0; V_maxloc= 2; V_min= 0; V_max= 1; V_minRowLoc= 0; V_maxRowLoc= 2; V_startRow= 0; V_endRow= 5; So it looks like it reports the location of the first instance (V_maxloc = 2). Log in or register to post comments August 18, 2020 at 01:11 pm - Permalink
ggermer The easiest solution is the quickest to lose sight of. Thank you! Log in or register to post comments August 18, 2020 at 01:12 pm - Permalink
Does this help?
August 18, 2020 at 08:27 am - Permalink
Print/D will also work well.
August 18, 2020 at 11:46 am - Permalink
Thanks a lot, that helped!
Could I add a little more question about wavestats: What happens to the location outputs if there are multiple minima or maxima?
August 18, 2020 at 12:42 pm - Permalink
Why not try it?
So it looks like it reports the location of the first instance (V_maxloc = 2).
August 18, 2020 at 01:11 pm - Permalink
The easiest solution is the quickest to lose sight of. Thank you!
August 18, 2020 at 01:12 pm - Permalink