-
|
Like |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Yes, calc builds libraries from which you can link operations. See the file In addition, nearly all help files for builtin functions contains a section called "LINK LIBRARY" that lists the libcalc functions that as needed to perform the function. For example: Calc comes with 2 examples of programs that link to libcalc. See the file |
Beta Was this translation helpful? Give feedback.
-
|
BTW: Calc does have a custom interface for those who wish to call their own code within the calc framework. See the file The entire Some people use the custom interface to access custom hardware accelerators, for example. Other people write special calculation operations to improve the algorithmic performance or to make use of an external mathematical library within the calc framework. |
Beta Was this translation helpful? Give feedback.
Yes, calc builds libraries from which you can link operations.
See the file
LIBRARYfor detailed information or run the calc command:In addition, nearly all help files for builtin functions contains a section called "LINK LIBRARY" that lists the libcalc functions that as needed to perform the function. For example:
Calc comes with 2 examples of programs that link to libcalc. See the file
sample.READMEand the source filessample_many.candsample_rand.cfor two examples of this.