<hr> <a name="unbundle"></a> <h2>unbundle</h2> unbundle( <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> ds, <a href='https://docs.oracle.com/javase/8/docs/api/java/lang/String.html'>String</a> name ) → <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> <p>Extract the named bundled dataset. For example, extract B_x from bundle of components.</p> <h3>Parameters</h3> ds - the bundle of datasets, often rank 2 with BUNDLE_1 property <br> name - the name of the bundled dataset, or "ch_<i>" where i is the dataset number <h3>Returns:</h3> the named dataset <h3>See Also:</h3> <a href='null'>unbundle(QDataSet, int)</a> <br> <a href='null'>DataSetOps#bundleNames(QDataSet)</a> <br> <br><br> <a href="https://github.com/autoplot/dev/search?q=unbundle&unscoped_q=unbundle">[search for examples]</a> <a href="https://github.com/autoplot/documentation/tree/master/javadoc/org/das2/qds/ops/Ops_u.md">[view on GitHub]</a> <a href="http://www-pw.physics.uiowa.edu/~jbf/autoplot/javadoc2018/org/das2/qds/ops/Ops.html#unbundle">[view on old javadoc]</a> <a href="https://sourceforge.net/p/autoplot/code/HEAD/tree/autoplot/trunk/QDataSet/src/org/das2/qds/ops/Ops.java#l14461">[view source]</a> <br> <br> unbundle( <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> ds, int i ) → <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a><br> <hr> <a name="unbundleBins"></a> <h2>unbundleBins</h2> unbundleBins( <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> ds, int i ) → <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> <p>convenient method for getting the times from an events dataset, this unbundles the startTimes at i and the stopTimes at i+1 to a bins dataset. The second column can be durations as well.</p> <h3>Parameters</h3> ds - the bundle. <br> i - the index, 0 for a canonical events dataset. <h3>Returns:</h3> rank 2 bins dataset. <br><br> <a href="https://github.com/autoplot/dev/search?q=unbundleBins&unscoped_q=unbundleBins">[search for examples]</a> <a href="https://github.com/autoplot/documentation/tree/master/javadoc/org/das2/qds/ops/Ops_u.md">[view on GitHub]</a> <a href="http://www-pw.physics.uiowa.edu/~jbf/autoplot/javadoc2018/org/das2/qds/ops/Ops.html#unbundleBins">[view on old javadoc]</a> <a href="https://sourceforge.net/p/autoplot/code/HEAD/tree/autoplot/trunk/QDataSet/src/org/das2/qds/ops/Ops.java#l14489">[view source]</a> <br> <br> <hr> <a name="uniq"></a> <h2>uniq</h2> uniq( <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> ds ) → <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> <p>Return the unique indices from the rank 1 dataset. If the set is not monotonic, then return unique indices from the monotonic portions.</p> <h3>Parameters</h3> ds - rank 1 dataset, sorted, or mostly sorted. <h3>Returns:</h3> the element indices. <h3>See Also:</h3> <a href='null'>sort(java.lang.Object)</a> <br> <a href='null'>uniq(QDataSet, QDataSet)</a> <br> <a href='null'>uniqValues(QDataSet, QDataSet)</a> <br> <br><br> <a href="https://github.com/autoplot/dev/search?q=uniq&unscoped_q=uniq">[search for examples]</a> <a href="https://github.com/autoplot/documentation/tree/master/javadoc/org/das2/qds/ops/Ops_u.md">[view on GitHub]</a> <a href="http://www-pw.physics.uiowa.edu/~jbf/autoplot/javadoc2018/org/das2/qds/ops/Ops.html#uniq">[view on old javadoc]</a> <a href="https://sourceforge.net/p/autoplot/code/HEAD/tree/autoplot/trunk/QDataSet/src/org/das2/qds/ops/Ops.java#l7207">[view source]</a> <br> <br> uniq( <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> ds, <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> sort ) → <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a><br> <hr> <a name="uniqValues"></a> <h2>uniqValues</h2> uniqValues( <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> ds, <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> sort ) → <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> <p>return the unique elements from the dataset. If sort is null, then the dataset is assumed to be monotonic, and only repeating values are coalesced. If sort is non-null, then it is the result of the function "sort" and should be a rank 1 list of indices that sort the data. renamed uniqValues from uniq to avoid confusion with the IDL command. This needs example code and should not be used for now. See VirboAutoplot/src/scripts/test/testUniq.jy</p> <h3>Parameters</h3> ds - rank 1 dataset, sorted, or mostly sorted. <br> sort - null, or the rank 1 dataset of indices <h3>Returns:</h3> the subset of the data which is uniq. <h3>See Also:</h3> <a href='Ops_u.html#uniq uniq, which returns the indices.'>uniq uniq, which returns the indices.</a> uniq, which returns the indices.<br> <a href='null'>uniq(QDataSet, QDataSet)</a> <br> <br><br> <a href="https://github.com/autoplot/dev/search?q=uniqValues&unscoped_q=uniqValues">[search for examples]</a> <a href="https://github.com/autoplot/documentation/tree/master/javadoc/org/das2/qds/ops/Ops_u.md">[view on GitHub]</a> <a href="http://www-pw.physics.uiowa.edu/~jbf/autoplot/javadoc2018/org/das2/qds/ops/Ops.html#uniqValues">[view on old javadoc]</a> <a href="https://sourceforge.net/p/autoplot/code/HEAD/tree/autoplot/trunk/QDataSet/src/org/das2/qds/ops/Ops.java#l7323">[view source]</a> <br> <br> <hr> <a name="unwrap"></a> <h2>unwrap</h2> unwrap( <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> ds, double discont ) → <a href='http://www-pw.physics.uiowa.edu/~jbf/autoplot/doc/org/das2/qds/QDataSet.html'>QDataSet</a> <p>SciPy's unwrap function, used in demo of hilbertSciPy, which unwraps a function that exists in a modulo space so that the differences are minimal.</p> <h3>Parameters</h3> ds - rank 1 dataset, containing values from 0 to discont <br> discont - the discont, such as PI, TAU, 24, 60, 360, etc. <h3>Returns:</h3> a QDataSet <br><br> <a href="https://github.com/autoplot/dev/search?q=unwrap&unscoped_q=unwrap">[search for examples]</a> <a href="https://github.com/autoplot/documentation/tree/master/javadoc/org/das2/qds/ops/Ops_u.md">[view on GitHub]</a> <a href="http://www-pw.physics.uiowa.edu/~jbf/autoplot/javadoc2018/org/das2/qds/ops/Ops.html#unwrap">[view on old javadoc]</a> <a href="https://sourceforge.net/p/autoplot/code/HEAD/tree/autoplot/trunk/QDataSet/src/org/das2/qds/ops/Ops.java#l9751">[view source]</a> <br> <br>