Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. M = {{2, 8, 1}, {7, 3, 4}, {5, 6, 9}}
  2. MatrixForm@M
  3.  
  4. TableForm[M, TableAlignments -> Center,
  5. TableHeadings -> {{"r1", "r2", "r3"}, {"s1", "s2", "s3"}},
  6. TableSpacing -> {4, 2}]
  7.  
  8. Grid[M, Frame -> {{Red, Purple, Red}}, Alignment -> Right,
  9. Background -> Pink]
  10.  
  11. Plot[{Sin[x], Cos[2 x]}, {x, -\[Pi], \[Pi]},
  12. PlotLegends -> "Expressions", GridLines -> Automatic,
  13. PlotStyle -> {Directive[Blue, Thick], Directive[Red, Dashed]}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement