mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-09-08 04:34:47 +02:00
29 lines
490 B
Markdown
29 lines
490 B
Markdown
|
# BLAS/Lapack
|
||
|
|
||
|
Install OpenBLAS from your system package manager, for example:
|
||
|
|
||
|
```bash
|
||
|
sudo apt-get install libopenblas-dev
|
||
|
```
|
||
|
|
||
|
# LaCAML
|
||
|
|
||
|
LaCAML is the OCaml binding to the LAPACK library.
|
||
|
|
||
|
```bash
|
||
|
opam install lacaml
|
||
|
```
|
||
|
|
||
|
# odoc-ltxhtml
|
||
|
|
||
|
This plugin allows to embed equations in the documentation generated by Ocamldoc.
|
||
|
|
||
|
Download the source code [here](https://github.com/scemama/odoc-ltxhtml).
|
||
|
|
||
|
```bash
|
||
|
git clone https://github.com/akabe/odoc-ltxhtml
|
||
|
cd odoc-ltxhtml
|
||
|
make install
|
||
|
```
|
||
|
|