Script of ScientificComputing course
| announcements | ||
| bootstrap | ||
| codestyle | ||
| debugging/lecture | ||
| designpattern/lecture | ||
| latex | ||
| likelihood | ||
| linearalgebra | ||
| moduledescription | ||
| plotting | ||
| pointprocesses | ||
| programming | ||
| projects | ||
| regression | ||
| replicability/lectures | ||
| resources | ||
| simulations | ||
| spectral/lecture | ||
| spike_trains | ||
| statistics | ||
| statistics-fabian | ||
| .gitignore | ||
| chapter.mk | ||
| exercises.mk | ||
| exercisesheader.tex | ||
| exercisestitle.tex | ||
| header.tex | ||
| Makefile | ||
| plotstyle.py | ||
| README.fonts | ||
| scientificcomputing-script.tex | ||
| slides.mk | ||
| UT_WBMW_Rot_RGB.pdf | ||
Fonts for matplotlib -------------------- Install Humor Sans font ``` sudo apt install fonts-humor-sans ``` Clear matplotlib font cache: ``` cd ~/.cache/matplotlib/ rm -r * ``` Older problems -------------- 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 ``` You should better NOT reinstall ``` sudo apt-get install fonts-lyx ``` to give back the fonts to lyx.