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_shorttermpotentiation/rawData/main.m
2020-01-13 16:46:52 +01:00

35 lines
661 B
Matlab

clear all
close all
data = load('Username_2019-05-22_001.mat');
IV_protnum = [25];
STP_protnum = [26, 27, 28, 29, 30];
IV = sortData(data, IV_protnum);
STP = sortData(data, STP_protnum);
IV_steps = -90:10:50;
save 'IV.mat' IV
save 'IV_steps.mat' IV_steps
save 'STP.mat' STP
% for i = 1:length(STP)
% for j = 1:length(STP{i})
% figure(j)
% hold on
% plot(STP{i}{j}(:,1),STP{i}{j}(:,2))
% hold off
% end
% end
%
% for i = 1:length(IV)
% for j = 1:length(IV{i})
% figure(j)
% hold on
% plot(IV{i}{j}(:,1),IV{i}{j}(:,2))
% hold off
% end
% end