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 @ 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: 469 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<TData> {
9        /// <summary>
10        /// Converts a Matlab variable into a timeseries.
11        /// </summary>
12        /// <returns></returns>
13        IMLTimeseries ToTimeseries();
14    }
15}
Note: See TracBrowser for help on using the repository browser.