Commit a383a3f3 authored by jayd1860's avatar jayd1860
Browse files

v1.72.0

-- Fix error when exporting processing stream to JSON files because of bug in extracting mlActMan - since it is no longer a vector but a 2D array of sd pairs plus data type.
parent bf948c01
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -376,10 +376,16 @@ classdef ProcStreamClass < handle
        % ----------------------------------------------------------------------------------        
        function mlActMan = CompressMlActMan(obj)
            mlActMan = [];
            if isempty(obj.input.mlActMan)

            % We don't need to compress mlAct man because it is usually not that big 
            % But even did then we have to modify compressLogicalArray to handle 2d arrays 
            % instead of just vectors.
            % mlActMan = compressLogicalArray(obj.input.mlActMan{1});
            temp = obj.GetVar('mlActMan');
            if isempty(temp)
                return
            end
            mlActMan = compressLogicalArray(obj.input.mlActMan{1});
            mlActMan = temp{1};
        end
        
        
+2 −1
Original line number Diff line number Diff line
1.71.2
1.72.0