Loading @Data/Data.m +1 −0 Original line number Diff line number Diff line Loading @@ -12,6 +12,7 @@ classdef Data < handle checked = []; open = []; fig = []; multi_mode = []; end Loading @Data/clone.m +1 −1 Original line number Diff line number Diff line Loading @@ -22,7 +22,7 @@ copy.function_inputs = object.function_inputs; copy.checked = object.checked; copy.settings = object.settings; copy.multi_mode = object.multi_mode; copy.Grid2 = Grid(2,[]); copy.Grid1 = Grid(1,[]); Loading @Data/getData.m +2 −1 Original line number Diff line number Diff line Loading @@ -9,13 +9,14 @@ % name:string - Function name % inputs:string - input string % checked:boolean - typecheck status function [grid0, grid1, grid2, name, inputs, checked] = getData(object) function [grid0, grid1, grid2, name, inputs, checked, multi] = getData(object) grid0 = object.Grid0; grid1 = object.Grid1; grid2 = object.Grid2; name = object.function_name; inputs = object.function_inputs; checked = object.checked; multi = object.multi_mode; end No newline at end of file @Data/init.m +1 −0 Original line number Diff line number Diff line Loading @@ -13,6 +13,7 @@ object.Grid2.new_Cell; object.Grid1.new_Cell; object.checked = 0; object.multi_mode = 0; end No newline at end of file @Data/setData.m +2 −1 Original line number Diff line number Diff line Loading @@ -10,13 +10,14 @@ % checked:boolean - typecheck status % outputs: % none function [] = setData(object, grid0, grid1, grid2, name, inputs, checked) function [] = setData(object, grid0, grid1, grid2, name, inputs, checked, multi) object.Grid0 = grid0; object.Grid1 = grid1; object.Grid2 = grid2; object.function_name = name; object.function_inputs = inputs; object.checked = checked; object.multi_mode = multi; end No newline at end of file Loading
@Data/Data.m +1 −0 Original line number Diff line number Diff line Loading @@ -12,6 +12,7 @@ classdef Data < handle checked = []; open = []; fig = []; multi_mode = []; end Loading
@Data/clone.m +1 −1 Original line number Diff line number Diff line Loading @@ -22,7 +22,7 @@ copy.function_inputs = object.function_inputs; copy.checked = object.checked; copy.settings = object.settings; copy.multi_mode = object.multi_mode; copy.Grid2 = Grid(2,[]); copy.Grid1 = Grid(1,[]); Loading
@Data/getData.m +2 −1 Original line number Diff line number Diff line Loading @@ -9,13 +9,14 @@ % name:string - Function name % inputs:string - input string % checked:boolean - typecheck status function [grid0, grid1, grid2, name, inputs, checked] = getData(object) function [grid0, grid1, grid2, name, inputs, checked, multi] = getData(object) grid0 = object.Grid0; grid1 = object.Grid1; grid2 = object.Grid2; name = object.function_name; inputs = object.function_inputs; checked = object.checked; multi = object.multi_mode; end No newline at end of file
@Data/init.m +1 −0 Original line number Diff line number Diff line Loading @@ -13,6 +13,7 @@ object.Grid2.new_Cell; object.Grid1.new_Cell; object.checked = 0; object.multi_mode = 0; end No newline at end of file
@Data/setData.m +2 −1 Original line number Diff line number Diff line Loading @@ -10,13 +10,14 @@ % checked:boolean - typecheck status % outputs: % none function [] = setData(object, grid0, grid1, grid2, name, inputs, checked) function [] = setData(object, grid0, grid1, grid2, name, inputs, checked, multi) object.Grid0 = grid0; object.Grid1 = grid1; object.Grid2 = grid2; object.function_name = name; object.function_inputs = inputs; object.checked = checked; object.multi_mode = multi; end No newline at end of file