// Copyright 2017-2019 Alexander Luzgarev
namespace MatFileHandler
{
///
/// An interface for accessing the contents of .mat files.
///
public interface IMatFile
{
///
/// Gets a list of variables present in the file.
///
///
/// Variables are in the order in which they appear in the .mat file.
///
IVariable[] Variables { get; }
///
/// Lookup variable by name.
///
/// Variable name.
IVariable this[string variableName] { get; set; }
}
}