We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d9d9b9 commit 2d1ea27Copy full SHA for 2d1ea27
+stdlib/checkRAM.m
@@ -1,4 +1,4 @@
1
-%% CHECKRAN estimate if RAM will fit a new array
+%% CHECKRAM estimate if RAM will fit a new array
2
% checks that requested memory for the new array won't exceed AVAILABLE RAM with Matlab
3
%
4
% This script is optimistic as Matlab won't always be able to
buildfile.m
@@ -90,6 +90,9 @@ function publishTask(~)
90
words = split(strip(summary(1)), " ");
91
% purposefully this will error if no docstring
92
fname = words(1);
93
+ if(lower(fname) ~= lower(name))
94
+ error("fname %s does not match name %s", fname, name)
95
+ end
96
line = "<a href=" + name + ".html>" + fname + "</a> ";
97
if(length(words) > 1)
98
line = line + join(words(2:end));
0 commit comments