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
Hi Bobbie,
My attempt to run the test codes failed on Matlab R2017a due to:
missing function vecnorm.m
Introduced in R2017b
min(..,'all') https://www.mathworks.com/help/matlab/ref/min.html
M = min(A,[],'all') finds the minimum over all elements of A. This syntax is valid for MATLAB® versions R2018b and later.
You could replace by min(min(...)) and make this more backward-compatible.
So, it would be great if you list the version requirement, and any Toolboxes needed, in your README.md.
Thanks, Alex
The text was updated successfully, but these errors were encountered:
Hi Alex,
Thanks for testing the code! I just pushed a fix to the compatibility issue, let me know if they don't work.
I will update the preprint and mention the "cruller" for sure.
Thanks, Bobbie
Hi Bobbie,
My attempt to run the test codes failed on Matlab R2017a due to:
missing function vecnorm.m
Introduced in R2017b
min(..,'all')
https://www.mathworks.com/help/matlab/ref/min.html
M = min(A,[],'all') finds the minimum over all elements of A. This syntax is valid for MATLAB® versions R2018b and later.
You could replace by min(min(...)) and make this more backward-compatible.
So, it would be great if you list the version requirement, and any Toolboxes needed, in your README.md.
Thanks, Alex
The text was updated successfully, but these errors were encountered: