Compare commits

...

6 Commits

Author SHA1 Message Date
Deleted user 7223290cba
Merge 99d2c46085 into 4ded7538c1 2024-03-02 16:25:14 +08:00
Cyrille Rossant 4ded7538c1
Merge pull request #113 from ngntrgduc/master
fix dead link in Numerical Analysis
2024-02-27 21:00:44 +01:00
Duc Nguyen 178dd173fe
fix dead link in Numerical Analysis
Advanced Numerical Methods and Their Applications to Industrial Problems: Adaptive Finite Element Methods - Alfred Schmidt, Arsen Narimanyan
2024-02-19 00:56:57 +07:00
Cyrille Rossant 27cbc72e7d
Merge pull request #111 from mrt-usc/master
fix dead link in numerical analysis
2024-01-30 09:12:04 +01:00
mrt-usc d943248662
fix dead link
Lectures In Basic Computational Numerical Analysis
2024-01-29 15:50:38 -08:00
Oussama Elgoumri 99d2c46085 download all pdf files 2017-10-28 18:49:44 +01:00
3 changed files with 28 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
pdf

View File

@ -563,8 +563,8 @@ A curated list of awesome mathematics resources.
* [Introduction to Numerical Analysis](http://www.math.umd.edu/~dlevy/resources/notes.pdf) - Doron Levy (University of Maryland)
* [A Concise Introduction to Numerical Analysis](http://www.ima.umn.edu/~arnold/597.00-01/nabook.pdf) - Douglas N. Arnold (University of Minnesota)
* [Numerical Analysis](http://people.cs.uchicago.edu/~ridg/newna/nalrs.pdf) - L. Ridgway Scott
* [Lectures In Basic Computational Numerical Analysis](http://www.engr.uky.edu/~acfd/egr537-lctrs.pdf) - J. M. McDonough (University of Kentucky)
* [Advanced Numerical Methods and Their Applications to Industrial Problems: Adaptive Finite Element Methods](http://www.math.uni-bremen.de/~schmidt/SS04/YSU_Notes.pdf) - Alfred Schmidt, Arsen Narimanyan
* [Lectures In Basic Computational Numerical Analysis](https://uknowledge.uky.edu/cgi/viewcontent.cgi?article=1000&context=math_textbooks) - J. M. McDonough (University of Kentucky)
* [Advanced Numerical Methods and Their Applications to Industrial Problems: Adaptive Finite Element Methods](https://user.math.uni-bremen.de/schmi/SS04/YSU_Notes.pdf) - Alfred Schmidt, Arsen Narimanyan
* [Numerical Analysis for Engineers](https://ece.uwaterloo.ca/~dwharder/nm/) - Douglas Wilhelm Harder

25
download-all-pdf.sh Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash
# --------------------------------- Create the pdf directory if not exists --
if [ ! -d pdf ]; then
mkdir pdf
fi
# ---------------------------------------- Add pdf directory to .gitignore --
if [ ! -f .gitignore ]; then
echo pdf > .gitignore
else
grep -q -F 'pdf' .gitignore || echo 'pdf' >> .gitignore
fi
# ---------------------------------------- Download pdf file if not exists --
for f in `sed -rn 's/.*(http.+\.pdf).*/\1/pg' README.md`
do
if [ ! -f "pdf/${f##*/}" ]; then
wget --tries=3 \
--timeout=5 \
--waitretry=1 \
--retry-connrefused \
"$f" -P pdf
fi
done