SystemAnalysisDpt-CMC-MSU / ellipsoids

Ellipsoidal Toolbox for MATLAB is a standalone set of easy-to-use configurable MATLAB routines and classes to perform operations with ellipsoids and hyperplanes of arbitrary dimensions
http://systemanalysisdpt-cmc-msu.github.io/ellipsoids
Other
19 stars 7 forks source link

Make it possible to plot 2d and 3d ellipsoids from the same array #23

Closed pgagarinov closed 6 years ago

pgagarinov commented 8 years ago

Right now a call like this

ellVec=[ellipsoid(eye(2)),ellipsoid(eye(3))];

is not supported. One needs to make it possible. Most of the points from issue #22 are useful here as well.

1) The implemented functionality should be covered with tests implemented in the following test pack. +elltool+core+test+mlunit\GenEllipsoidPlotTestCase. In the test one needs to consider different combinations of input parameters and array sizes. Negative tests are also required. See Wiki for an example of a negative test (mlunitext.test_case.runAndCheckError).

2) No copy-pasting, compliance with the coding style (see Wiki) and presence of code comments. No commented out code, no blank lines, no long lines.

irublev commented 6 years ago

All is done within issue #52