Ask Your Question
3

Call C/C++ Code

asked 2011-06-16 01:14:22 +0200

Jennifer Dylan gravatar image

Let's say, I wrote matrix.c which is a C file containing several functions. Can I call any of the functions defined in matrix.c from Sage? What special compilation do I need for matrix.c?

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
4

answered 2011-06-16 05:53:06 +0200

Joaquim Puig gravatar image

You can use your C/C++ code directly, using the Ctypes library, which is included in SAGE. You can find a nicely documented example on how to call your libraries on Numerical Sage documentation:

http://www.sagemath.org/doc/numerical_sage/ctypes.html

edit flag offensive delete link more
3

answered 2011-06-16 01:56:58 +0200

kcrisman gravatar image

updated 2011-06-16 01:57:19 +0200

Probably you will want to use Cython to do this - it's a good way to integrate C libraries with Sage (as well as to create C code from within Sage).

You may also want to search this site for Cython for more tips.

edit flag offensive delete link more

Comments

There's also ctypes, which I've found useful in the past.

DSM gravatar imageDSM ( 2011-06-16 04:51:31 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2011-06-16 01:14:22 +0200

Seen: 1,358 times

Last updated: Jun 16 '11