Links: Difference between revisions
From phys660
Jump to navigationJump to search
(→MATLAB) |
|||
(20 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== | == Numerical Analysis == | ||
*C. Moler, [http://www.mathworks.com/moler/chapters.html Numerical Computing with MATLAB] (SIAM, Philadelphia, 2004). | |||
*W. H. Press, S. A. Teukolsky, W. T. Vetterling, and B. P. Flannery: [http://www.nr.com/ Numerical Recipes: The Art of Scientific Computing] (CUP, Cambridge, 2007). | |||
* L. N. Trefethen, [http://people.maths.ox.ac.uk/trefethen/spectral.html Spectral Methods in MATLAB] (SIAM, Philadelphia, 2000). | |||
* G. W. Recktenwald, [[Media:unavoidable_errors.pdf|Unavoidable errors in computing]]. | |||
== Unix == | |||
*[http://www.udel.edu/topics/connect/VPN/ Using VPN at UD] | *[http://www.udel.edu/topics/connect/VPN/ Using VPN at UD] | ||
*[http://www-uxsup.csx.cam.ac.uk/pwf-linux/intro/remote.files.html Transfering Files: scp and sftp] | *[http://www-uxsup.csx.cam.ac.uk/pwf-linux/intro/remote.files.html Transfering Files: scp and sftp] | ||
Line 8: | Line 14: | ||
*Introduction to Emacs, Pico, and VI text editors | *Introduction to Emacs, Pico, and VI text editors | ||
== LaTeX | == LaTeX == | ||
*[http://www.andy-roberts.net/writing/latex Getting to Grips with LaTeX] | *[http://www.andy-roberts.net/writing/latex Getting to Grips with LaTeX] | ||
*[http:// | *[http://en.wikibooks.org/wiki/LaTeX LaTeX Guide@Wikibooks] | ||
*[https://authors.aps.org/revtex4/ REVTEX4 Authors' Guide] | *[https://authors.aps.org/revtex4/ REVTEX4 Authors' Guide] | ||
*[http://www.unf.edu/~wkloster/latex/bib.html How to use BibTeX] | *[http://www.unf.edu/~wkloster/latex/bib.html How to use BibTeX] | ||
*[http://www.aip.org/pacs | *[http://jabref.sourceforge.net/ JabRef manager for BibTeX entries] | ||
*[http://www.aip.org/pacs PACS codes] | |||
== MATLAB | == MATLAB == | ||
* '''Running MATLAB m-files in background under Linux:''' nohup matlab -nojvm -nodesktop -nodisplay < your_file.m & > log_file.out & | |||
*[http://www.mathworks.com/help/pdf_doc/matlab/getstart.pdf MATLAB Getting Started Guide] | *[http://www.mathworks.com/help/pdf_doc/matlab/getstart.pdf MATLAB Getting Started Guide] | ||
*[http://www.mathworks.com/help/techdoc/index.html The complete official MATLAB reference] | *[http://www.mathworks.com/help/techdoc/index.html The complete official MATLAB reference] | ||
*[http://cs.nyu.edu/cs/faculty/overton/g22_nm/programs/info.html Calling C and Fortran from MATLAB using the MEX interface] | *[http://cs.nyu.edu/cs/faculty/overton/g22_nm/programs/info.html Calling C and Fortran from MATLAB using the MEX interface] | ||
*[http:// | *[[Media:mlab_bench.pdf|Multithreaded MATLAB performance on selected multicore machines at UD]] | ||
*[http://www.mathworks.com/help/matlab/matlab_prog/techniques-for-improving-performance.html Techniques for improving performance] | |||
*[http://www.cac.cornell.edu/matlab/TechDocs/Examples/BestPracticesGPU.aspx Best practices for MATLAB GPU coding] | |||
*[http://www.mathworks.com/help/distcomp/run-built-in-functions-on-a-gpu.html MATLAB built-in functions on GPU] | |||
== Fortran 90 | == Fortran 90 == | ||
* [http://gcc.gnu.org/wiki/GFortran GNU Fortran] | |||
* [http://sip.clarku.edu/tutorials/F.html Fortran 90 in 24 hours] | * [http://sip.clarku.edu/tutorials/F.html Fortran 90 in 24 hours] | ||
* [[Media:introductory_f90.pdf|Introductory Fortran Programming]] | * [[Media:introductory_f90.pdf|Introductory Fortran Programming]] | ||
* [http://www.cisl.ucar.edu/tcg/consweb/Fortran90/F90Tutorial/tutorial.html Fortran 90 Advanced Tutorial] | * [http://www.cisl.ucar.edu/tcg/consweb/Fortran90/F90Tutorial/tutorial.html Fortran 90 Advanced Tutorial] | ||
==Python | ==Python== | ||
*[[Media:python_40minutes.pdf|Python in 40 minutes]] | *[[Media:python_40minutes.pdf|Python in 40 minutes]] | ||
*[http://docs.python.org/tutorial/index.html Comprehensive Python Tutorials] | *[http://docs.python.org/tutorial/index.html Comprehensive Python Tutorials] | ||
*[http://python.org/ Python.org] | *[http://python.org/ Python.org] | ||
*[http://numpy.scipy.org/ NumPy] | *[http://numpy.scipy.org/ NumPy] |
Latest revision as of 18:07, 21 April 2017
Numerical Analysis
- C. Moler, Numerical Computing with MATLAB (SIAM, Philadelphia, 2004).
- W. H. Press, S. A. Teukolsky, W. T. Vetterling, and B. P. Flannery: Numerical Recipes: The Art of Scientific Computing (CUP, Cambridge, 2007).
- L. N. Trefethen, Spectral Methods in MATLAB (SIAM, Philadelphia, 2000).
- G. W. Recktenwald, Unavoidable errors in computing.
Unix
- Using VPN at UD
- Transfering Files: scp and sftp
- Using X-windows (X11) and secure shell (SSH) to connect to a remote UNIX server
- PuTTY SSH Client
- X Tunneling on Windows via Xming
- X Tunneling on MacOS
- Introduction to Emacs, Pico, and VI text editors
LaTeX
- Getting to Grips with LaTeX
- LaTeX Guide@Wikibooks
- REVTEX4 Authors' Guide
- How to use BibTeX
- JabRef manager for BibTeX entries
- PACS codes
MATLAB
- Running MATLAB m-files in background under Linux: nohup matlab -nojvm -nodesktop -nodisplay < your_file.m & > log_file.out &
- MATLAB Getting Started Guide
- The complete official MATLAB reference
- Calling C and Fortran from MATLAB using the MEX interface
- Multithreaded MATLAB performance on selected multicore machines at UD
- Techniques for improving performance
- Best practices for MATLAB GPU coding
- MATLAB built-in functions on GPU