Skip to content

openInMoTeC

Alexius Wadell edited this page Jan 15, 2017 · 1 revision

Syntax

ds.openInMoTeC

Description

ds.openInMoTeC Opens the datasource ds in MoTeC i2Pro. ds can be a single datasource or an array of datasources.

Usage

Using ds.openInMoTeC, Datamaster's search capabilities can be leveraged to quickly find suitable datasources for a given analysis. While Datamaster is backed by the power of MATLAB, it does lack the finished GUI of MoTeC i2Pro.

ds.openInMoTeC``ds.openInMoTeC seeks to provide users more comfortable with i2Pro's interface some access to Datamaster's capabilities.

Example

Suppose we want to examine all datasources from the 2016 FSAE Michigan Competition

dm = Datamaster;

%Get Datasource that occurred during the competition (May 10-15th 2016)
ds = dm.getDatasource('StartDate', '2016-05-10', 'EndDate', '2016-05-15');

%Open Competition datasources in MoTeC i2Pro
ds.openInMoTeC;
Clone this wiki locally