Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2913: The import does now work with Matlab timeseries datatypes.

File size: 394 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 IMLValueVariable<TData> : IMLVariable {   
9    /// <summary>
10    /// The data of the Matlab variable.
11    /// </summary>
12    TData Data { get; set; }
13  }
14}
Note: See TracBrowser for help on using the repository browser.