Advertisement
walkingthicc

cw01_sec3_thompson_l

Jan 21st, 2020
565
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. % Thompson L
  2. % MECH 102, Section 3
  3. % cw2
  4.  
  5. %This assignment is my own work except as noted in the comments below.
  6.  
  7. %Signature________________________________ %Date 1.21.2020
  8.  
  9. clc
  10. clear
  11. %% prob1
  12. %deg
  13. a=cosd(35)
  14. b=acotd(17)
  15. c=tand(-90)
  16. d=asind(0.2)
  17. %rad
  18. e=acos(0.3)
  19. f=sin(3*pi)
  20. g=(tan(3*pi/7))^3
  21. h=cot(pi/3)
  22.  
  23. %% prob2
  24. a2=round(a)
  25. b2=fix(b)
  26. c2=sin(c)
  27. d2=rem(d,5)
  28. e2=ceil(e)
  29. f2=round(f)
  30. g2=floor(g)
  31. h2=sin(h)
  32. clear
  33. %% prob3
  34. a=((14.8^2+6.5^2)/3.8^2)+55/(2^.5+14)
  35. b=-3.5^3+(exp(6)/log(524))+206^(1/3)
  36. clear
  37. %% prob4
  38. a=15*((10^.5+3.7^2)/(log10(1365)+1.9))
  39. b=((16-(216/22))*2.5^3)/(1.7^4+14)+nthroot(2050,4)
  40. clear
  41. %% prob5
  42. a=sin(7*pi/9)/(cos(5*pi/7)^2)+(1/7)*tan(5*pi/12)
  43. b=(tand(64)/(cosd(14))^2)-(3*sind(80)/nthroot(0.9,3))+(cosd(55)/sind(11))
  44. clear
  45. %% 2020.21.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement