Advertisement
Guest User

Untitled

a guest
Dec 11th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. DeclareMathOperator*{argmin}{arg,min}
  2.  
  3. [bm theta_c^p coloneqq adjustlimitsargmin_{bm theta_c in mathbb{R}^{n_{p} } } max_{bm theta in mathcal{D}_{bm theta}} left| bm theta - bm theta_c right|_p ]
  4.  
  5. RequirePackage{fix-cm}
  6. documentclass{article}
  7. usepackage{mathtools,amssymb}
  8. usepackage{bm}
  9.  
  10. DeclareMathOperator*{argmin}{arg,min}
  11. DeclareMathSizes{5}{5}{4}{4}
  12.  
  13.  
  14. begin{document}
  15.  
  16. [
  17. bm{theta}_c^p coloneqq
  18. adjustlimitsargmin_{bm{theta}_c in mathbb{R}^{n_{p}}}
  19. max_{bm{theta} in mathcal{D}_{bm theta}}
  20. lVertbm{theta} - bm theta_c rVert_p
  21. ]
  22. [
  23. bm{theta}_c^p coloneqq
  24. adjustlimitsargmin_{bm{theta}_c in mathbb{R}^{text{$n_{p}$}}}
  25. max_{bm{theta} in mathcal{D}_{bm theta}}
  26. lVertbm{theta} - bm theta_c rVert_p
  27. ]
  28.  
  29. end{document}
  30.  
  31. max { (x-3) : x in [-1,1] }
  32.  
  33. documentclass{article}
  34.  
  35. usepackage{mathtools,amssymb,bm}
  36.  
  37. DeclareMathOperator*{argmin}{arg,min}
  38. DeclarePairedDelimiter{norm}{lVert}{rVert}
  39.  
  40. newcommand{btheta}{bm theta}
  41.  
  42. begin{document}
  43.  
  44. begin{equation*}
  45. btheta_c^p coloneqq
  46. argmin
  47. Bigl{
  48. max_{btheta in mathcal{D}_{btheta}} norm{btheta - btheta_c}_p
  49. : btheta_c in mathbb{R}^{n_{p} }
  50. Bigr}
  51. end{equation*}
  52.  
  53. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement