MCAEmotiv.Interop.EEGDataEntryExtensions.Channels C# (CSharp) Method

Channels() public static method

Returns the channel time series represented by the series of entries
public static Channels ( this entries ) : IEnumerable>
entries this
return IEnumerable>
        public static IEnumerable<IEnumerable<double>> Channels(this IEnumerable<EEGDataEntry> entries)
        {
            return MCAEmotiv.Interop.Channels.Values.Select(ch => entries.Channel(ch));
        }