1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Mathematicaでいつも冒頭で実行する処理をまとめる

Last updated at Posted at 2022-01-18

これは何の記事か

Mathematicaを快適に使う上でいつも冒頭で書いておきたい処理を自分のためにまとめて書いておく。Mathematicaは公式ドキュメントこそ多いものの、一般人による記事が少なく、コミュニティとして終わっている気がするので、ついでに誰かの助けになればいいな、などと思っている。

結論

まずは、自分がノートブックにコピペする用に処理をまとめて書いておく。ノートブックにコピペしたら、適切なところでcommand + shift + dをおして、セルを分割してから実行しよう。

(* はじめから実行する処理 *)
SetOptions[EvaluationNotebook[], CellContext -> Notebook];
savefile = 
 FileNameJoin[{NotebookDirectory[], 
   TemplateApply[
    "/savefiles/``_savefile.wl", {FileBaseName[NotebookFileName[]]}]}];
(* 実行したい時に実行する処理 *)
Save[savefile, "`*"];   (* savefileが本当に今のノートブックに対応したものかを確認せよ *)
Get[savefile];   (* savefileが本当に今のノートブックに対応したものかを確認せよ *)

解説

この記事とかこの記事とか。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?