LTPDA Toolbox™ | contents | ![]() ![]() |
This table summarizes what's new in Version 2.5.3:
New Features and Changes | Version Compatibility Considerations | Fixed Bugs and Known Problems | Related Documentation at Web Site |
---|---|---|---|
Yes Details below |
No | Bug Reports at Web site | Printable Release Notes: PDF |
This version of LTPDA is 2.5.3. This document lists the changes since V2.5.2.
This version requires MATLAB 2010a or above.
This is a minor update on V2.5.2. Mostly changes are minor changes and bug fixes due to the STOC-LPF Simulation 1 meeting.
The collection class has new behaviour similar to MATLAB’s struct class. This means that the objects in the collection can now have names assigned to them, and can be referenced via these names. Here is some example usage:
% Build collection using default reference names
a = ao(1);
b = ao.randn(10,10);
c = collection(a,b);
a1 = c.obj1;
b1 = c.obj2;
% specify the reference names during construction c = collection('a', a, 'b', b); a1 = c.a; b1 = c.b;
% Add an object to the collection c = collection('a', a, 'b', b); c.d = ao(4);
![]() |
Version 2.5.4 LTPDA Toolbox Software | Version 2.5.2 LTPDA Toolbox Software | ![]() |
©LTP Team