total = 0; %initialization
for k = 1:length(epochs)
fprintf('%15s%10d\n', epochs{k,1}, counts{k,3})
total = total + count{k,3};
end
The above is the matlab code.
If you face any issues, do let me know the description for counts variable as mentioned in the solution of problem 23a. Hope this helps.
Epoch names ("Pre-3000 B.C.", etc.) are stored in epochs, a 16 times 1 cell array. Complete...