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
2021-05-05 11:49:30 +02:00
announcements added all my stuff 2014-11-12 18:39:02 +01:00
bootstrap removed texpicture command where not needed 2020-12-23 23:04:09 +01:00
codestyle random fixes and notes 2020-12-13 09:43:44 +01:00
debugging/lecture fixed page breaking of code and exercises 2020-12-11 23:22:40 +01:00
designpattern/lecture [regression] finished n-dim minimization 2020-12-19 21:53:19 +01:00
latex statistics datat types done 2014-10-06 12:46:36 +02:00
likelihood [likelihood] added Pouget population code review 2021-02-09 19:26:44 +01:00
linearalgebra [linalg] added solutions to exercise 2019-01-08 14:47:04 +01:00
logistic/code [logisitc] added code on AUC interpretation 2021-01-11 22:00:25 +01:00
moduledescription added all my stuff 2014-11-12 18:39:02 +01:00
plotting [programming] updated exercise infrastructure 2020-12-15 19:12:31 +01:00
pointprocesses [projects] checked Jan B and Lukas projects 2021-02-01 14:52:56 +01:00
programming more ignores, real fix of pagelisting 2020-12-20 14:11:11 +01:00
projects [projects] updated lif and serial correlations 2021-05-05 11:49:14 +02:00
regression [likelihood] improved text 1 2021-01-09 13:40:35 +01:00
replicability/lectures removed texpicture command where not needed 2020-12-23 23:04:09 +01:00
resources moved Brown paper to resources 2018-10-09 15:37:23 +02:00
simulations [simulations] added random walk neuron figures 2020-12-29 23:45:46 +01:00
spectral [spectral] updated transfer function for noisy systems 2021-03-12 22:58:55 +01:00
spike_trains [pointprocesses] move firing rate exercise to point processes folder 2020-01-17 10:06:05 +01:00
statistics ideas for more chapters 2020-12-27 21:39:20 +01:00
statistics-fabian change assignment text to german 2015-10-30 18:38:01 +01:00
.gitignore more ignores, real fix of pagelisting 2020-12-20 14:11:11 +01:00
chapter.mk no more gnuplot! 2021-01-10 20:54:23 +01:00
exercises.mk [likelihood] added mlestd.out and fixed mlestd.pdf 2021-01-18 23:18:14 +01:00
exercisesheader.tex [statistics] improved latex and Makefile file structure 2020-12-14 00:17:32 +01:00
exercisestitle.tex [statistics] improved latex and Makefile file structure 2020-12-14 00:17:32 +01:00
header.tex [pointprocesses] better incorporated Poisson spike train 2021-01-17 23:57:06 +01:00
Makefile added exercise target to master Makefile 2020-12-15 19:16:24 +01:00
plotstyle.py [pointprocesses] fixed raster plot 2021-01-26 09:19:52 +01:00
README.fonts updated statistics exercise instructions 2020-12-07 19:21:17 +01:00
scientificcomputing-script.tex [pointprocesses] improved chapter 2021-01-18 13:13:35 +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
--------------------

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.