Script of ScientificComputing course
This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2019-12-06 08:45:10 +01:00
announcements added all my stuff 2014-11-12 18:39:02 +01:00
bootstrap new \entermde function for adding terms to both indices 2019-12-06 08:45:10 +01:00
debugging/lecture exercises either here, at end of chapter or at end of script 2019-12-01 17:35:42 +01:00
designpattern/lecture exercises either here, at end of chapter or at end of script 2019-12-01 17:35:42 +01:00
further_topics/lectures minor changes to further topics presentation 2015-11-04 20:26:25 +01:00
latex statistics datat types done 2014-10-06 12:46:36 +02:00
likelihood some minor fixe 2019-12-01 18:24:59 +01:00
linearalgebra [linalg] added solutions to exercise 2019-01-08 14:47:04 +01:00
moduledescription added all my stuff 2014-11-12 18:39:02 +01:00
plotting exercises either here, at end of chapter or at end of script 2019-12-01 17:35:42 +01:00
pointprocesses [bootstrap] updated text and exercises 2019-12-03 08:57:40 +01:00
programming exercises end of chapter with chapter names 2019-12-01 18:00:12 +01:00
programmingstyle exercises either here, at end of chapter or at end of script 2019-12-01 17:35:42 +01:00
projects Merge branch 'master' of https://whale.am28.uni-tuebingen.de/git/teaching/scientificComputing 2019-05-15 09:18:27 +02:00
regression exercises end of chapter with chapter names 2019-12-01 18:00:12 +01:00
resources moved Brown paper to resources 2018-10-09 15:37:23 +02:00
spectral/lecture fixed front matter 2017-11-26 11:53:21 +01:00
spike_trains some fixes to firing rate exercise 2018-12-03 21:10:02 +01:00
statistics new \entermde function for adding terms to both indices 2019-12-06 08:45:10 +01:00
statistics-fabian change assignment text to german 2015-10-30 18:38:01 +01:00
.gitignore updated gitignore to ignore gnuplot generated tex files 2017-11-28 13:07:54 +01:00
chapter.mk README for matplotlib fonts problemns 2019-12-02 13:04:32 +01:00
header.tex new \entermde function for adding terms to both indices 2019-12-06 08:45:10 +01:00
Makefile README for matplotlib fonts problemns 2019-12-02 13:04:32 +01:00
README.fonts README for matplotlib fonts problemns 2019-12-02 13:04:32 +01:00
scientificcomputing-script.tex new \entermde function for adding terms to both indices 2019-12-06 08:45:10 +01:00
slides.mk added slides for bootstrap 2017-01-17 09:59:25 +01:00
UT_WBMW_Rot_RGB.pdf Some makeup everywhere... 2015-11-05 08:52:39 +01:00

Fonts for matplotlib
--------------------

Make sure the right fonts are installed:
```
sudo apt-get install ttf-lyx2.0 
```
There is some conflict with `lyx` fonts, so we first remove them
and remove the matplotlib font cache:
```
sudo dpkg --remove --force-depends fonts-lyx
rm ~/.cache/matplotlib/fontList.cache
# rm ~/.matplotlib/fontList.cache     # older ubuntus
```
Then we need to plot something to recreate the matplotlib font cache:
```
make cleanplots
make plots
```
To give back the fonts to lyx we reinstall them
```
sudo apt-get install fonts-lyx 
```