Closed NoahDolev closed 5 years ago
Hi,
I believe the line:
probe.shankMap = cell2mat(arrayfun(@(i) i*ones(size(pstr.shank{i})), 1:numel(shank), 'UniformOutput', 0));
Should read:
probe.shankMap = cell2mat(arrayfun(@(i) i*ones(size(pstr.shank{i})), 1:numel(pstr.shank), 'UniformOutput', 0));
Cheers, Noah
Right you are. Thanks for spotting it!
Hi,
I believe the line:
Should read:
Cheers, Noah