-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d9b83c
commit 1f7e555
Showing
6 changed files
with
27 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[default] | ||
extend-ignore-identifiers-re = [ | ||
"allk", | ||
"als", | ||
"Nd", | ||
"iy", | ||
"pn", | ||
"MIRTio", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
* Install Julia (1.5 or later recommended) from https://julialang.org/ | ||
* Explore the extensive documentation at https://docs.julialang.org/ | ||
* Install Julia (1.10 or later recommended) from https://julialang.org | ||
* Explore the extensive documentation at https://docs.julialang.org | ||
* Launch Julia and use the `]` key to enter its package manager. | ||
* Add any packages needed for these notebooks using the `add` command. | ||
* For example `add Plots` to add the `Plots` package. | ||
* Other crucial standard packages are `FFTW` `FFTViews` | ||
* You will also need the package `IJulia` to run any Jupyter demo notebooks. | ||
* Add MIRT by typing `add MIRT` | ||
(Automatically loads from https://github.com/JeffFessler/MIRT.jl because MIRT.jl is a registered package.) | ||
(Automatically loads from https://github.com/JeffFessler/MIRT.jl | ||
because MIRT.jl is a registered package.) | ||
* Type `precompile` to have Julia precompile the added packages. | ||
* After you are done adding packages, press the backspace key to return to the REPL prompt. | ||
* Later if you need to add more packages just type the `]` key again at the REPL prompt to enter the package manager. | ||
* Julia is under active development so code is updated frequently. It is a wise to type `up` (short for `update`) at the package manager prompt every week or so to get automatic updates of any packages you have intalled. | ||
* After you are done adding packages, press the backspace key | ||
to return to the REPL prompt. | ||
* Later if you need to add more packages just type the `]` key again | ||
at the REPL prompt to enter the package manager. | ||
* Julia is under active development so code is updated frequently. | ||
It is a wise to type `up` (short for `update`) at the package manager prompt | ||
every week or so to get automatic updates of any packages you have installed. | ||
* For some Julia tutorials see | ||
http://web.eecs.umich.edu/~fessler/course/551/julia/tutor/ | ||
http://web.eecs.umich.edu/~fessler/course/551/julia/tutor | ||
* For some signal processing demos in Julia see | ||
http://web.eecs.umich.edu/~fessler/course/551/julia/demo/ | ||
http://web.eecs.umich.edu/~fessler/course/551/julia/demo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters