MatrixBerryCore
StructChangeTrackerAdv.m
Go to the documentation of this file.
1 classdef StructChangeTrackerAdv<mxberry.core.struct.StructChangeTracker
2  properties
3  end
4 
5  methods (Static)
6  function SInput=patch_001_alpha(SInput)
7  SInput.alpha1=strcat(SInput.alpha1,'1');
8  SInput.alpha5=SInput.alpha5*10;
9  SInput.alpha3=1;
10  end
11  function SInput=patch_103_test(SInput)
12  SInput.alpha1=strcat(SInput.alpha1,'103');
13  SInput.alpha5=SInput.alpha5*10;
14  SInput.alpha3=103;
15  end
16  end
17  methods
18  function SInput=patch_002_test(~,SInput)
19  SInput.alpha1=strcat(SInput.alpha1,'2');
20  SInput.alpha5=SInput.alpha5*10;
21  SInput.alpha3=2;
22  end
23  end
24 
25 end
STRUCTCHANGETRACKER keeps a list of structure patches and provide tools for applying them to any arbi...