module Palette::Helper

Public Instance Methods

linspace(x1, x2, *rest) click to toggle source
# File lib/palette/helper.rb, line 17
                def linspace(x1, x2, *rest)
  Numo::DFloat.linspace(x1, x2, *rest).to_a
end