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
|
Rev | Line | |
---|
[15912] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Threading.Tasks;
|
---|
| 6 |
|
---|
| 7 | namespace 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.