Skip to content

Commit

Permalink
fix data size check
Browse files Browse the repository at this point in the history
  • Loading branch information
bendichter committed Apr 2, 2018
1 parent 824a82d commit 5cf61d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion +file/writeClass.m
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ function writeClass(className, classStruct, namespace)
fprintf(fid, ' if ');
for i=1:length(threshold)
if i > 1
fprintf(fid, ' || ');
fprintf(fid, ' && ');
end
if threshold(i) > 2
fprintf(fid, 'ndims(val) ~= %d', threshold(i));
Expand Down

0 comments on commit 5cf61d3

Please sign in to comment.