Release Notes Version 7 9 1 and DataSet Construction: Difference between pages

From Eigenvector Research Documentation Wiki
(Difference between pages)
Jump to navigation Jump to search
imported>Scott
 
imported>Mathias
 
Line 1: Line 1:
==Changes and Bug Fixes in Version 7.9.1==
==Getting Started==
In general, data is stored in a dataset object.


{| {{table}}
| align="center" style="background:#f0f0f0;"|'''File'''
| align="center" style="background:#f0f0f0;"|'''Comment'''


|----valign="top"
|'''[[analysis]]'''
|
* .


|----valign="top"
|'''[[browse]]'''
|
* Add rebuild of trees in Refresh menu item so window can recover when Java gets stuck scrolling.
* Fix workspace multi-select on Mac.


|----valign="top"
|'''[[gselect]]'''
|
* Improve use with 3D data selections.
|----valign="top"
|'''[[zzz ]]'''
|
* .


|----valign="top"
==From a GUI==
|'''[[zzz]]'''
|
* .


|----valign="top"
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.
|'''[[zzz]]'''
 
|
==From the MATLAB Command Line==
*
 
|----valign="top"
 
|'''[[netcdfreadr]]'''
From the command line, the easiest way to create a dataset is to pass an array to the dataset function.  First we will create an array of data to be passed to the dataset function. 
|
 
* Added netCDF file reader. Defaults set for MS data.
<pre>
>> t    = [0:0.1:10]';
>> x    = [cos(t) sin(t) exp(-t)];
>> data = dataset(x)
   
   
|----valign="top"
data =
|'''[[zzz]]'''
      name: x
|
      type: data
*
      date: 23-May-2016 11:24:53
|----valign="top"
    moddate: 23-May-2016 11:24:53
|'''[[reportwriter]]'''
      data: 101x3 [double]
|
      label: {2x1} [array (char)]
* Fix parsing of multi-line axis titles.
              Mode 1  [: ]
|----valign="top"
              Mode 2  [: ]
|'''[[trendtool]]'''
  axisscale: {2x1} [vector (real)] (axistype)
|
              Mode 1  [: ] (none)
* Improve placement of markers on edges of plot.
              Mode 2  [: ] (none)
      title: {2x1} [vector (char)]
              Mode 1  [: ]
              Mode 2  [: ]
      class: {2x1} [vector (double)]
              Mode 1  [: ]  
              Mode 2  [: ]
    classid: {2x1} [cell of strings]
    include: {2x1} [vector (integer)]
              Mode 1  [: 1x101]
              Mode 2  [: 1x3] 
    history: {1x1 cell} [array (char)]
      OTHER: [View Class Summary]
>>
 


|----valign="top"
</pre>
|'''[[varcap]]'''
|
* Add 100% line. Bump scale up to 119% so there's room at the top of the figure for labels.


|----
==Exporting Dataset to desired format==
|}

Revision as of 11:26, 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 dataset function. First we will create an array of data to be passed to the dataset function.

>> t    = [0:0.1:10]';
>> x    = [cos(t) sin(t) exp(-t)];
>> data = dataset(x)
 
data = 
       name: x
       type: data 
       date: 23-May-2016 11:24:53
    moddate: 23-May-2016 11:24:53
       data: 101x3 [double]
      label: {2x1} [array (char)]
               Mode 1  [: ] 
               Mode 2  [: ] 
  axisscale: {2x1} [vector (real)] (axistype)
               Mode 1  [: ] (none) 
               Mode 2  [: ] (none) 
      title: {2x1} [vector (char)]
               Mode 1  [: ] 
               Mode 2  [: ] 
      class: {2x1} [vector (double)]
               Mode 1  [: ] 
               Mode 2  [: ] 
    classid: {2x1} [cell of strings]
    include: {2x1} [vector (integer)]
               Mode 1  [: 1x101] 
               Mode 2  [: 1x3]   
    history: {1x1 cell} [array (char)]
      OTHER: [View Class Summary]
>> 


Exporting Dataset to desired format