Tagged Questions
4
votes
1answer
442 views
Linear algebra on iPhone (python/numpy?)
This semester, I'm implementing a compressed-sensing algorithm as an iPhone app. To do this, I'll need some good matrix/linear algebra libraries. I'm a little new to both iOS and Python, and am ...
2
votes
1answer
438 views
Embedding python + numpy code into C++ dll callback
I am new of python embedding.
I am trying to embed python + numpy code inside a C++ callback function (inside a dll)
the problem i am facing is the following. if i have:
Py_Initialize();
// some ...