Has anyone written a function like fortran() except for C/C++?
Subject: Has anyone written a function like fortran() except for C/C++?
From: David Ronis
Date: Thu, 13 Aug 2009 14:15:15 -0400
The subject says it all. For what it's worth, it seems like it should
be easy (at least for C); the main changes are some function names and
replacing things like x^y by pow((double)(x), (double)(y))
instead of (x)**(y).
David