Fixed octave-matlab translation error in plotting CAs

This commit is contained in:
jlizier 2017-05-22 15:55:17 +10:00
parent aedefd07bc
commit b05399e40f
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ function plotRawCa(states, rule, plotOptions, saveIt, saveFormat)
plotOptions.plotRows = size(states, 1);
end
if not(isfield(plotOptions, 'plotCols'))
plotOptions.plotCols = columns(states);
plotOptions.plotCols = size(states, 2);
end
if not(isfield(plotOptions, 'plotStartRow'))
plotOptions.plotStartRow = 1;