From e95d4a223bdc2fffa1edbdf5f614df1b96c23e14 Mon Sep 17 00:00:00 2001 From: Jonas Wagner Date: Wed, 10 Sep 2025 15:04:35 -0500 Subject: [PATCH] added boundingBox command which just returns --- @memZono/memZono.m | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/@memZono/memZono.m b/@memZono/memZono.m index 66f666b..349f257 100644 --- a/@memZono/memZono.m +++ b/@memZono/memZono.m @@ -209,7 +209,12 @@ function out = Z(obj,dims), out = projection(obj,dims).Z_; end % Additional methods (implimentations of abstractZono methods in memZono) [NN,Y] = reluNN(X,Ws,bs,a); - [s,x_out] = supportFunc(obj,dims,d_in) + function out = boundingBox(in) + keys_out = in.keys_; + keys_out.factors = in.dimKeys; + keys_out.cons = {}; + out = memZono(boundingBox(in.Z_),keys_out); + end end %% Indexing ----------------------------