Advertisement
Guest User

figure

a guest
Oct 26th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.20 KB | None | 0 0
  1. SPR=xlsread('SPR.xlsx');
  2. x=SPR(2:end,1);    
  3. y=SPR(1,2:end);
  4. z=SPR(2:end,2:end);
  5. [Y, X] = meshgrid(y, x);
  6. mesh(X, Y, z)
  7. xlabel('Wavelength (nm)');
  8. ylabel('time(s)');
  9. zlabel('Reflected Intensity');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement