Probabilistic Zonotope

In CORA, probabilistic zontopes are instantiated by
% probZ = probZonotope(Z,P);
where Z is the concatenated zonotope center and generator matrix, and P is the probabilistic generator matrix.
Example:
% initialize probabilistic zonotope
Z = [0 1 0; 0 0 1];
P = [3 2; 3 -2];
probZ = probZonotope(Z,P);
 
% plot probabilistic zonotope
plot(probZ);
For more information, type
help probZonotope
probZonotope - class for probabilistic zonotopes Syntax: obj = probZonotope(Z,G) obj = probZonotope(Z,G,gamma) Inputs: Z - zonotope matrix Z = [c,g1,...,gp] G - matrix storing the probabilistic generators G = [g1_, ..., gp_] gamma - cut-off value for plotting. The set is cut-off at 2*sigma, where sigma is the variance Outputs: obj - Generated object Example: Z = [10 1 -2; 0 1 1]; G = [0.6 1.2; 0.6 -1.2]; probZ1 = probZonotope(Z,G); gamma = 1.5; probZ2 = probZonotope(Z,G,gamma); Other m-files required: none Subfunctions: none MAT-files required: none See also: interval, polytope Documentation for probZonotope Other uses of probZonotope Folders named probZonotope