You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When applying the function ml = GetMeasList(obj, options) to a DataClass containing more than 1 condition the output has one extra row.
Steps to reproduce:
mlAct = dcAvg.GetMeasList();
Where dcAvg is a data cass containing more than 1 condition
This is because it enters into the if the statement of line 373 (if obj.measurementList(ii).GetCondition()>1), and the loop breaks, but ii has already been updated and then the unused rows are removed doing
ml(ii+1:end,:) = [];
The text was updated successfully, but these errors were encountered:
Version of Homer3 you are using
Homer3-1.80.2
Your environment (MATLAB environment and OS)
MATLAB R2024a; Windows 11 Pro 64-bit 23H2
Description of the issue
When applying the function ml = GetMeasList(obj, options) to a DataClass containing more than 1 condition the output has one extra row.
Steps to reproduce:
mlAct = dcAvg.GetMeasList();
Where dcAvg is a data cass containing more than 1 condition
This is because it enters into the if the statement of line 373 (if obj.measurementList(ii).GetCondition()>1), and the loop breaks, but ii has already been updated and then the unused rows are removed doing
ml(ii+1:end,:) = [];
The text was updated successfully, but these errors were encountered: