class Tdms::AggregateChannel

Public Class Methods

new(channels=[]) click to toggle source
# File lib/tdms/aggregate.rb, line 4
def initialize(channels=[])
  @channels = channels
end

Public Instance Methods

data_type() click to toggle source
# File lib/tdms/aggregate.rb, line 16
def data_type
  @channels[0].data_type
end
name() click to toggle source
# File lib/tdms/aggregate.rb, line 12
def name
  @channels[0].name
end
path() click to toggle source
# File lib/tdms/aggregate.rb, line 8
def path
  @channels[0].path
end
values() click to toggle source
# File lib/tdms/aggregate.rb, line 20
def values
  @values ||= AggregateChannelEnumerator.new(@channels)
end