Skip to content

Instantly share code, notes, and snippets.

@butchi
Last active December 1, 2016 14:34
Show Gist options
  • Save butchi/d7e4feb4aff9a4c97a87362b11c52b7a to your computer and use it in GitHub Desktop.
Save butchi/d7e4feb4aff9a4c97a87362b11c52b7a to your computer and use it in GitHub Desktop.
Mathematicaで数表のハイライト ref: http://qiita.com/butchi_y/items/40123394f9acd32c288f
highlightTable[tbl_, crit_, color_: Red] :=
Grid[tbl] /. {n_?crit -> Item[n, Background -> color]}
Grid[Table[x y - 1, {y, 15}, {x, 15}]] /. {n_?PrimeQ -> Item[n, Background -> Red]}
tbl = Table[x y - 1, {y, 10}, {x, 10}];
highlightTable[tbl, PrimeQ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment