Bug Description
In Analysis.m, lines 246 and 364 reference tObj.sampeRate instead of tObj.sampleRate. The missing 'l' causes a runtime error when these code paths are hit.
Locations
- Line 246:
tObj.sampeRate
- Line 364:
tObj.sampeRate
Expected Fix
Change both to tObj.sampleRate.
Found during comprehensive cross-toolbox audit.
Bug Description
In
Analysis.m, lines 246 and 364 referencetObj.sampeRateinstead oftObj.sampleRate. The missing 'l' causes a runtime error when these code paths are hit.Locations
tObj.sampeRatetObj.sampeRateExpected Fix
Change both to
tObj.sampleRate.Found during comprehensive cross-toolbox audit.