namespace MatFileHandler
{
///
/// Options for writing .mat files.
///
public struct MatFileWriterOptions
{
///
/// Gets default options.
///
public static MatFileWriterOptions Default => new()
{
UseCompression = CompressionUsage.Always,
};
///
/// Gets or sets a value indicating whether to compress all variables when writing the file.
///
public CompressionUsage UseCompression { get; set; }
}
}