Skip to content

Commit

Permalink
Merge pull request #5 from mikecroucher/master
Browse files Browse the repository at this point in the history
Adds some suggestions from Kathy
  • Loading branch information
mikecroucher authored May 16, 2019
2 parents 1afe071 + 00e37f8 commit 5567357
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ install:
- sudo apt-get install -y texlive-fonts-recommended

script:
"pandoc --metadata-file=./pandoc_latex.yml Readme.md -o Readme.pdf"
"pandoc -f markdown+fancy_lists --metadata-file=./pandoc_latex.yml Readme.md -o NAG_kdb.pdf"

deploy:
provider: pages
Expand Down
23 changes: 12 additions & 11 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To install the NAG Library for *Python*:
$ python -m pip install --extra-index-url
https:nag/com/downloads/py/naginterfaces_nag naginterfaces
```
To install PyQ from Kx:
The PyQ package is developed by [Kx Systems](https://kx.com/), the developers of kdb+. To install it:
```
$ python -m pip install pyq
```
Expand Down Expand Up @@ -192,15 +192,16 @@ With our problem now fully defined, we invoke the NAG routine to compute our sol

NAG recently published the technical report [Using the NAG Library with Kdb+ in a Pure Q Environment](https://www.nag.com/doc/techrep/pdf/tr1_18.pdf) discussing how to call the NAG Library using the new [Foreign Function Interface (FFI)](https://code.kx.com/q/interfaces/ffi/) from Kx. Additionally, the NAG Blog titled [Calling the NAG C Library from Kdb+](http://blog.nag.com/2013/05/calling-nag-c-library-from-kdb.html) details how to incorporate the NAG Library with kdb+ within a C++ program. We speculate that among our shared clients, a mixture of these methods will be employed.

If your desired usage case happens to fall outside of those described within our current publications, please contact NAG support at support@nag.com for assistance with your application.
If your desired usage case happens to fall outside of those described within our current publications, please contact NAG support at [support@nag.com](mailto:support@nag.com) for assistance with your application.

## 5 Links
## 5 References / Bibliography

(#) Calling the NAG C Library from Kdb+ [http://blog.nag.com/2013/05/calling-nag-c-library-from-kdb.html](http://blog.nag.com/2013/05/calling-nag-c-library-from-kdb.html)
(#) Get Going with Kdb+ [https://code.kx.com/v2/](https://code.kx.com/v2/)
(#) Kdb+ and Python: embedPy and PyQ [https://kx.com/blog/kdb-python-embedpy-pyq/](https://kx.com/blog/kdb-python-embedpy-pyq/)
(#) NAG GitHub Organisation [https://github.com/numericalalgorithmsgroup/](https://github.com/numericalalgorithmsgroup/)
(#) NAG Library for *Python* Manual [https://www.nag.com/numeric/py/nagdoc_latest/index.html](https://www.nag.com/numeric/py/nagdoc_latest/index.html)
(#) Using Foreign Functions with Kdb+ (FFI) [https://code.kx.com/q/interfaces/ffi/](https://code.kx.com/q/interfaces/ffi/)
(#) Using Python with kdb+ (PyQ) [https://code.kx.com/q/interfaces/pyq/](https://code.kx.com/q/interfaces/pyq/)
(#) Using the NAG Library with Kdb+ in a Pure Q Environment [https://www.nag.com/doc/techrep/pdf/tr1_18.pdf](https://www.nag.com/doc/techrep/pdf/tr1_18.pdf)

* NAG Library for *Python* Manual [https://www.nag.com/numeric/py/nagdoc_latest/index.html](https://www.nag.com/numeric/py/nagdoc_latest/index.html)
* Get Going with Kdb+ [https://code.kx.com/v2/](https://code.kx.com/v2/)
* Using Python with kdb+ (PyQ) [https://code.kx.com/q/interfaces/pyq/](https://code.kx.com/q/interfaces/pyq/)
* Kdb+ and Python: embedPy and PyQ [https://kx.com/blog/kdb-python-embedpy-pyq/](https://kx.com/blog/kdb-python-embedpy-pyq/)
* Using the NAG Library with Kdb+ in a Pure Q Environment [https://www.nag.com/doc/techrep/pdf/tr1_18.pdf](https://www.nag.com/doc/techrep/pdf/tr1_18.pdf)
* Using Foreign Functions with Kdb+ (FFI) [https://code.kx.com/q/interfaces/ffi/](https://code.kx.com/q/interfaces/ffi/)
* Calling the NAG C Library from Kdb+ [http://blog.nag.com/2013/05/calling-nag-c-library-from-kdb.html](http://blog.nag.com/2013/05/calling-nag-c-library-from-kdb.html)
* NAG GitHub Organisation [https://github.com/numericalalgorithmsgroup/](https://github.com/numericalalgorithmsgroup/)

0 comments on commit 5567357

Please sign in to comment.