Version 2.5.3 LTPDA Toolbox Software


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

Introduction

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.

Main Changes

The collection class

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);

Other changes



©LTP Team