This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/projects/project_activation_curve/solution/plotcurrents.m

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