Example #1
0
        public static EventList Join(List <EventList> lists, bool sort = true)
        {
            Matrix <float>[,] ar = new Matrix <float> [lists.Count, 1];
            for (int i = 0; i < lists.Count; i++)
            {
                ar[i, 0] = lists[i].Events;
            }

            var eventList = new EventList(Matrix <float> .Build.DenseOfMatrixArray(ar));

            if (sort)
            {
                return(SortRows(eventList));
            }
            // Else
            return(eventList);
        }
Example #2
0
 public EventPlot(EventList events)
 {
     Events = events;
 }
Example #3
0
 public EventModify(EventList events)
 {
     Events = events;
 }