Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2913_MatlabScriptProblemInstanceProvider/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Matlab/Api/MatlabApiFactory.cs

Last change on this file was 15912, checked in by rhanghof, 7 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: 380 bytes
RevLine 
[15912]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 {
8    public static class MatlabApiFactory {
9        public static IMatlabConnector CreateMatlabConnector() {
10            return new MatlabConnector();
11        }
12    }
13}
Note: See TracBrowser for help on using the repository browser.