'fft cache(:,1:2)' doesn't work
Framework for numerical computations, data analysis and visualisation
Brought to you by:
numere
The command sequence
fft cache(:,1:2)
doesn't work and throws an error, that the cache cache() already exists. There's probably an issue in parser_evalTargetExpression().
The issue is that in the function Table copyAndExtract() one tries to rename the cache "cache" into "cache" in this case. This is not possible. So the fix is as simple as this: add
if (sDatatable != "cache")
_cache.renameCache("cache", sDatatable, true);
to the mentioned function.
The fix was added to the automatic tests. No deviations occured. Bug fix implemented successfully.
Anonymous
Diff:
Diff:
Diff:
Related
Commit: [r428]
Diff: