Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. TableForm[
  2. Table[Plot[Sin[ n x], {x, 0, 2 Pi}, ImageSize -> {150, 150}], {n, 1,
  3. 15}]
  4. ]
  5.  
  6. table = Table[Plot[Sin[n x], {x, 0, 2 Pi}, ImageSize -> {150, 150}], {n, 1, 15}];
  7.  
  8. TableForm[ArrayReshape[table, {3, 5}]]
  9.  
  10. Multicolumn[table, {3, 5}]
  11.  
  12. Grid[Partition[table, 5]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement