Zonotope Bundle
In CORA, zontope bundles are instantiated by
% zB = zonoBundle(list);
where
list
is a list (cell-array) of zonotope objects.
Example:
% initialize zonotopes
Z1 = zonotope([1;1],[3 0; 0 2]);
Z2 = zonotope([0;0],[2 2; 2 -2]);
% initialize zonotope bundle
list = {Z1,Z2};
zB = zonoBundle(list);
% plot zonotope bundle
plot(zB);