Closed yahiaali closed 4 years ago
Hi Jason,
Should we issue a new release of the plugin?
Arno
On Oct 9, 2019, at 4:32 PM, Yahia Ali notifications@github.com wrote:
The following error results from calling runamica15(data) in MATLAB R2019A when data is a channels x frames matrix:
Undefined function or variable 'floatwrite'.
Error in runamica15 (line 754) floatwrite(dat, fullfile(pwd, filename));
This was resolved by replacing floatwrite with the following code in runamica15.m and runamica15_nsg.m:
fid = fopen(filename, 'w'); fwrite(fid, dat, 'float'); fclose(fid)
You can view, comment on, or merge this pull request online at:
https://github.com/japalmer29/amica/pull/16
Commit Summary
• Replace floatwrite with fwrite File Changes
• M runamica15.m (4) • M runamica15_nsg.m (4) Patch Links:
• https://github.com/japalmer29/amica/pull/16.patch • https://github.com/japalmer29/amica/pull/16.diff — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.
The following error results from calling
runamica15(data)
in MATLAB R2019A whendata
is a channels x frames matrix:This was resolved by replacing
floatwrite
with the following code inrunamica15.m
andrunamica15_nsg.m
: