Dataset findset

From Eigenvector Research Documentation Wiki
Revision as of 11:47, 12 September 2012 by imported>Scott (Created page with "===Purpose=== Locate a set within a label field (axisscale,label,class) in a DataSet. ===Synopsis=== :setnum = findset(dso,'field',mode,name) ===Description=== Returns the transp...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Purpose

Locate a set within a label field (axisscale,label,class) in a DataSet.

Synopsis

setnum = findset(dso,'field',mode,name)

Description

Returns the transposed DataSet object x in which rows are now columns and vice versa (mode 1 becomes mode 2 and mode 2 becomes mode 1). All fields are transposed as necessary. This specific command only operates on vector and two-way DataSet objects. To modify multi-way DataSet objects (more than 2 modes), use the PERMUTE method.

Example

The following demonstrates the transpose of a DataSet object, a:

>> a.data
ans =
     1     2
    30    40
>> a=a';
>> a.data
ans =
     1    30
     2    40

See Also

dataset_permute