You can always interpolate to a coarser grid than the original data.
This uses interp1 for simplicity. The same idea will work for interp2:
x = linspace(0, 10, 100); y = sin(x * 2);
xi = linspace(0, 10, 33); yi = interp1(x, y, xi, 'linear','extrap');
figure(1) plot(x, y, '-b') hold on plot(xi, yi, 'pg') hold off