Location: ".../Initial Value Problems/Example: Recording The Particle Velocity/Defining the time array"
Description: The second row of the code block has one redundant input
Original:
% create time array
t_end = 6e-6; % [s]
kgrid.makeTime(kgrid, medium.sound_speed, [], t_end);
Should be:
% create time array
t_end = 6e-6; % [s]
kgrid.makeTime(medium.sound_speed, [], t_end);
The source code is correct, however.