// Copyright 2017-2018 Alexander Luzgarev namespace MatFileHandler.Tests; /// /// Method of reading .mat files for testing. /// public enum MatFileReadingMethod { /// /// Undefined. /// Undefined = 0, /// /// Normal stream (like memory or file stream). /// NormalStream, /// /// Partial stream (only is capable of reading one byte at a time). /// PartialStream, /// /// Unaligned stream (what happens if the data don't start at the beginning?). /// UnalignedStream, }