Scale the pulse width to 1 from 1.04
#!/usr/bin/env ruby -w | |
require 'csv' | |
file = ARGV[0] | |
out = file.split('.').join('-normalized.') | |
unless file | |
puts "Usage: normalize [filename]" | |
exit(1) | |
end | |
CSV.open(out, 'w') do |csv| | |
CSV.foreach(file) do |line| | |
ts = line[0].to_f | |
rounded = (ts - (ts % 1.04)).round(2) | |
csv << [ rounded, line[1] ] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment