You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If Z is an n-dimensional zonotope of order 2, we say that it is in standard form if its generators matrix is G = [M D] with M and D n x n matrices and D diagonal.
Create a function cartesian_product_standard(X::Vector{Zonotope}) that returns the n-fold cartesian product in standard form, assuming all the zonotopes in X are in standard form. Bonus points if it can handle zonotopes (X[i]) of different dimensions.
The text was updated successfully, but these errors were encountered:
If Z is an n-dimensional zonotope of order 2, we say that it is in standard form if its generators matrix is
G = [M D]
with M and D n x n matrices and D diagonal.Create a function
cartesian_product_standard(X::Vector{Zonotope})
that returns then
-fold cartesian product in standard form, assuming all the zonotopes inX
are in standard form. Bonus points if it can handle zonotopes (X[i]
) of different dimensions.The text was updated successfully, but these errors were encountered: