Short Cython Example In A Notebook Cell?
What's the best way to integrate (new) cython code into your notebook?
What's the best way to integrate (new) cython code into your notebook?
If you don't have any specific questions then here's an example I made of using Cython in the Sage Notebook to perform fast matrix multiplication: (Note that I'm just re-implementing the naive algorithm using various stages of Python->Cython conversion.)
http://uw.sagenb.org/home/pub/19/
It's based on a talk made by one of the lead Cython developers. Also, the Cython documentation is excellent and most, if not all, of the language elements work naturally in the notebook environment.
I have another one demonstrating Sage/Pylab interfacing: http://uw.sagenb.org/home/pub/20/. This one is also based on a Cython talk.
There are lots of examples if you search sagenb.org for "%cython": Here is the search
A particularly nice example is here
This question is extremely open ended and not very specific, so I'm not sure how to answer.
One point, is that you use %cython to create a notebook cell that is evaluated using Cython.
Do you have a more specific question about using Cython with the Sage notebook?
A short example (notebook/cell-based) on the cython.org homepage would be great.
Asked: 2010-08-18 16:11:58 -0600
Seen: 825 times
Last updated: Aug 19 '10
sage notebook does not respond to commands in cell
How to use cython functions from other cython cells in notbook?
Sage Notebook: Add New Method to Evaluate All Cells with ...
How do I sign in to my sage localhost notebook?
How to write a standalone cython script?