I found a github containing a Voice Activity Detection algorithm here. the implementation takes in a simple list of doubles (file = sound.txt), and outputs several text files, containing 2 columns of data (files = example_.txt)
It contains an older gnuplot script to display a multiplot. However, this script needs revising with the new gnuplot
Here's the script:
$ gnuplot
$ > set multiplot
$ > plot "sound.txt" with 1:2 lines
$ > filename(n) = sprintf("example_%d.txt", n)
$ > plot for [i=1:10] filename(i) using 1:2 with lines
Can anyone figure out what this script is trying to do, and update it to the new syntax?
Thanks, Charles.