mirror of https://github.com/jlizier/jidt
Fixed octave-matlab translation error in plotting CAs
This commit is contained in:
parent
aedefd07bc
commit
b05399e40f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue