Let A be your table.
wavelength = A(:,1) ;
Time = 1:size(A,2)-1 ;
data = A(:,2:end) ;
h = pcolor(wavelength,Time,data') ;
h.EdgeColor = 'none' ;
xlabel('Wave length')
ylabel('Time')
Also have a look on heatmap
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!