Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. S[z] =
  2. ListPlot[
  3. {{0.3451, 0},
  4. {3.61504, 14.5525503047423}, {6.43385, 28.1359640888397},
  5. {8.20271, 35.8693997314435}, {10.36884, 40.0596469567131},
  6. {12.70524, 40.7344299897916}, {14.6349, 49.3205653991629},
  7. {16.64968, 47.236883162213}, {18.57934, 53.6723782396654},
  8. {20.42387, 60.1963170848129}, {23.15755, 61.0961774098441},
  9. {25.49395, 67.8907159035738}, {27.74521, 66.7281232290898},
  10. {29.35326, 74.270969135446}, {30.72483, 69.3890375468614},
  11. {32.89096, 84.4267811980949}, {34.0166, 84.5491651221964}},
  12. Joined -> True]
  13.  
  14. data =
  15. {{0.3451, 0},
  16. {3.61504, 14.5525503047423}, {6.43385, 28.1359640888397},
  17. {8.20271, 35.8693997314435}, {10.36884, 40.0596469567131},
  18. {12.70524, 40.7344299897916}, {14.6349, 49.3205653991629},
  19. {16.64968, 47.236883162213}, {18.57934, 53.6723782396654},
  20. {20.42387, 60.1963170848129}, {23.15755, 61.0961774098441},
  21. {25.49395, 67.8907159035738}, {27.74521, 66.7281232290898},
  22. {29.35326, 74.270969135446}, {30.72483, 69.3890375468614},
  23. {32.89096, 84.4267811980949}, {34.0166, 84.5491651221964}};
  24.  
  25. S = Interpolation[data];
  26.  
  27. Plot2525 = Plotmeasured =
  28. Plot[S[z], {z, First[data][[1]], Last[data][[1]]}]
  29. Labeled[
  30. Rotate[Show[Plot2525, PlotRange -> All ], 270 Degree],
  31. {"Depth m", " Unit shaft friction (KPa)"},
  32. {Left, Top},
  33. RotateLabel -> True]
  34.  
  35. ListLinePlot[Reverse /@ data]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement