It is not clear to me that dividing by the number of time steps and multiplying by 100 is going to get you any kind of meaningful percentage, but...
PercentS = cellfun(@(C) C .* (100 / n), Err);
This will return a cell array of arrays of values. I will leave it to you to assign meaning to those values.