class Graph::Function::Configuration

Attributes

memory[RW]
output[RW]
step[RW]
terminal[RW]
trials[RW]

Public Class Methods

new() click to toggle source

defaults see github.com/rdp/ruby_gnuplot/blob/master/examples/output_image_file.rb or mibai.tec.u-ryukyu.ac.jp/~oshiro/Doc/gnuplot_primer/gptermcmp.html

# File lib/graph/function.rb, line 54
def initialize
  @terminal = 'x11'
  @output = '.'
  @step = (0..10_000).step(1000).to_a
  # these are particular to GF, not Gnuplot
  @trials = 1
  @memory = false
end