Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Needs["ErrorBarPlots`"];
  2. d = Import["teste.txt", "TSV"];
  3. dNew = Table[{{d[[i, 1]], d[[i, 2]]}, ErrorBar[d[[i, 3]]]}, {i, 2,
  4. Length[d]}];
  5. ErrorListPlot[dNew,
  6. FrameLabel -> {"Position, x (inches)", "Photodetector output (V)"}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement