Code covered by the BSD License  

Highlights from
Ellipsoidal Toolbox (ET)

image thumbnail
from Ellipsoidal Toolbox (ET) by Alex Kurzhanskiy
Implementation of the ellipsoidal calculus and ellipsoidal methods for reachability analysis.

ell_unitball(n)
function [B] = ell_unitball(n)
%
% ELL_UNITBALL - creates unit ball object
%
%
% Description:
% ------------
%
%    B = ELL_UNITBALL(N)  Creates an ellipsoid in R^N with identity shape matrix,
%                         centered at the origin.
%
%
% Output:
% -------
%
%    B = { x : <x, x> <= 1 } - unit ball.
%
%
% See also:
% ---------
%
%    ELLIPSOID/ELLIPSOID
%

%
% Author:
% -------
%
%    Alex Kurzhanskiy <akurzhan@eecs.berkeley.edu>
%

  B = ellipsoid(eye(n));

  return;

Contact us at files@mathworks.com