DataSet Construction: Difference between revisions
Jump to navigation
Jump to search
imported>Mathias |
imported>Mathias |
||
Line 13: | Line 13: | ||
From the command line, the easiest way to create a dataset is to pass an array to the datasetfunction. | |||
<pre> | |||
>> myimage = buildimage(mydso ,[1 2], 1, 'myNewImage') </pre> | |||
==Exporting Dataset to desired format== | ==Exporting Dataset to desired format== |
Revision as of 10:16, 23 May 2016
Getting Started
In general, data is stored in a dataset object.
From a GUI
Using PLS_Toolbox and Solo, it is easy to import data into a dataset object using the data importer. From the workspace browser select File/Import Data to launch the GUI.
From the MATLAB Command Line
From the command line, the easiest way to create a dataset is to pass an array to the datasetfunction.
>> myimage = buildimage(mydso ,[1 2], 1, 'myNewImage')