This repository has been archived on 2021-05-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

14 lines
175 B
Matlab

function plotcurrents(time, currents)
figure();
hold on;
for k = 1:size(currents, 2)
plot(time, currents(:, k))
end
hold off;
xlabel('Time [ms]')
ylabel('Current')
end