Sha256: 7a166208d417f21cb4bdc8d3f02a26fac0193a7f3b45e874c45c34d251921eff
Contents?: true
Size: 523 Bytes
Versions: 35
Compression:
Stored size: 523 Bytes
Contents
require 'fileutils' require File.expand_path(File.join(['..'] * 4, 'spec', 'fixtures', 'stepwise_dataset'), __FILE__) require File.expand_path(File.join('..', 'gruff_plot'), __FILE__) require 'byebug' namespace :plot do desc 'plot the Stepwise dataset' task :stepwise => :create_output_dir do ranges = [ Range.new(0, 1) ] p = Mext::Gruff::Plotter.new('stepwise_dataset', 800, Mext::Spec::Fixtures::Math::STEPWISE_DATASETS, ranges) p.plot do |args| Math::Stepwise.new(args) end end end
Version data entries
35 entries across 35 versions & 1 rubygems