PRODUCTS
Products Overview
Mathematica
Mathematica for Students
Mathematica Home Edition
Wolfram
CDF Player
(free download)
Computable Document Format (CDF)
web
Mathematica
grid
Mathematica
Wolfram
Workbench
Wolfram
Finance Platform
Mathematica
Add-Ons
Wolfram|Alpha Products
SOLUTIONS
Solutions Overview
Engineering
Aerospace Engineering & Defense
Chemical Engineering
Control Systems
Electrical Engineering
Image Processing
Industrial Engineering
Materials Science
Mechanical Engineering
Operations Research
Optics
Petroleum Engineering
Biotechnology & Medicine
Bioinformatics
Medical Imaging
Finance, Statistics & Business Analysis
Actuarial Sciences
Data Analysis & Mining
Econometrics
Economics
Financial Engineering & Mathematics
Financial Risk Management
Statistics
Software Engineering & Content Delivery
Authoring & Publishing
Interface Development
Software Engineering
Web Development
Science
Astronomy
Biological Sciences
Chemistry
Environmental Sciences
Geosciences
Social & Behavioral Sciences
Design, Arts & Entertainment
Game Design, Special Effects & Generative Art
Education
STEM Education Initiative
Higher Education
Community & Technical College Education
Primary & Secondary Education
Students
Technology
Computable Document Format (CDF)
High-Performance & Parallel Computing (HPC)
See Also: Technology Guide
PURCHASE
Online Store
Other Ways to Buy
Volume & Site Licensing
Contact Sales
Software
Service
Upgrades
Training
Books
Merchandise
SUPPORT
Support Overview
Knowledge Base
Learning Center
Community & Forums
Training
Does My Site Have a License?
Wolfram User Portal
COMPANY
About Wolfram Research
News & Events
Wolfram Blog
Partnerships
Employment Opportunities
History of
Mathematica
Stephen Wolfram's Home Page
Contact Us
OUR SITES
All Sites
Wolfram|Alpha
Demonstrations Project
MathWorld
Integrator
Wolfram Functions Site
Mathematica Journal
Wolfram Media
Wolfram
Tones
Wolfram Science
Stephen Wolfram
DOCUMENTATION CENTER SEARCH
New to
Mathematica
?
Find your learning path
»
CCodeGenerator
>
C CODE GENERATOR PACKAGE SYMBOL
C Code Generation User Guide
Tutorials »
|
CCodeStringGenerate
SymbolicCGenerate
LibraryGenerate
See Also »
|
CCodeGenerator
More About »
CCodeGenerate
generates C code from the compiled function
cfun
using the name as the exported function
name
, and saves in the file
.
generates output in
filename
.
generates C code from several compiled functions and saves in
filename
.
MORE INFORMATION
To use
, you first need to load it using
Needs
.
can make standalone code or a
Wolfram Library
.
Mathematica
contains the necessary headers and libraries for standalone code.
You can generate a header for the generated code by setting
to
.
The following option can be given:
"CodeTarget"
"WolframRTL"
the type of code to generate
EXAMPLES
CLOSE ALL
Basic Examples
(1)
First, load the package:
Generate C code into a file:
Display the file of C code:
Generate code from two compiled functions:
Display the file of C code:
First, load the package:
In[1]:=
Generate C code into a file:
In[2]:=
Out[2]=
Display the file of C code:
In[3]:=
Generate code from two compiled functions:
In[4]:=
Out[4]=
Display the file of C code:
In[5]:=
Options
(1)
First, load the package:
By default standalone C code is generated:
This generates the header file for the export:
SEE ALSO
CCodeStringGenerate
SymbolicCGenerate
LibraryGenerate
TUTORIALS
C Code Generation User Guide
MORE ABOUT
CCodeGenerator