Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2913_MatlabScriptProblemInstanceProvider/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Matlab/Api/Types/IMLVariable.cs @ 15912

Last change on this file since 15912 was 15912, checked in by rhanghof, 6 years ago

#2913:

  • Added a RegressionInstanceProvider for Matlab instances.
  • Added an import dialog for importing Matlab data.
  • Added some classes which represents different Matlab specific datatypes.
  • Added a Matlab connector which contains a set of commands for interacting with the Matlab bridge.
File size: 643 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Problems.Instances.DataAnalysis.Regression.Matlab.Api.Types {
8    public interface IMLVariable<TData> {
9        /// <summary>
10        /// The name of the Matlab variable.
11        /// </summary>
12        string Name { get; set; }
13
14        /// <summary>
15        /// The data of the Matlab variable.
16        /// </summary>
17        TData Data { get; set; }
18
19        /// <summary>
20        /// The Matlab datatype.
21        /// </summary>
22        MLDatatype Datatype { get; }
23    }
24}
Note: See TracBrowser for help on using the repository browser.