The exact commands will depend on how the variables are stored, but here is one example of how you could do this:
header = {'Time' 'Plot1-1' 'Plot1-2' 'Plot2-1' 'Plot2-2' 'Plot2-3'};
data = ... [0 1 2 3 4 5; 1 2 3 4 5 6; 2 3 4 5 6 7];
timeCol = strncmp(header,'Time',4); plot1Col = strncmp(header,'Plot1',5); plot2Col = strncmp(header,'Plot2',5);
figure
hold on
plot(data(:,timeCol),data(:,plot1Col),'r.-', ...
data(:,timeCol),data(:,plot2Col),'b.-')
Here's the output ...
