[programming] code fixes

This commit is contained in:
Jan Grewe 2020-12-20 13:39:30 +01:00
parent cd90a132a6
commit beab805065

View File

@ -2,12 +2,12 @@ function plotsinewave(time, sine)
% plot precomputed sinewave
% time: vector with timepoints
% sine: corresponding vector with sinewave
if time(end)-time(1) <= 1.0
plot(1000.0*time, sine);
if time(end) - time(1) <= 1.0
plot(1000.0 * time, sine);
xlabel('Time [ms]');
else
plot(time, sine);
xlabel('Time [s]');
end
ylim([1.2*min(sine) 1.2*max(sine)]);
ylim([1.2 * min(sine) 1.2 * max(sine)]);
ylabel('Sinewave');