Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2913:

  • Added the support for importing different Matlab datatypes.
  • Added some classes and changed the import dialog for importing double arrays.
File size: 349 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 enum MLDatatype {
9        Double,
10        DoubleArray,
11        Timeseries,
12        Struct,
13        Undefinded
14    }
15}
Note: See TracBrowser for help on using the repository browser.