|
SOLUTIONS
|
SYMBOLICC PACKAGE SYMBOL
CAssign
![]()
is a symbolic representation of an assignment statement.
DetailsDetails
- SymbolicC expressions are inert; they evaluate to themselves, staying in an unevaluated form.
- SymbolicC expressions can be converted into a C string with ToCCodeString.
- The right-hand side of the assignment can be a list. This is useful for initializing an array.
ExamplesExamplesopen allclose all
Basic Examples (1)Basic Examples (1)
To use SymbolicC you first need to load the package:
| In[1]:= |
| In[2]:= |
| Out[2]= |
This assigns the location pointed to by
to 10:
| In[3]:= |
| Out[3]= |
This declares a variable and assigns it:
| In[4]:= |
| In[5]:= |
You can use different operators. This adds 5 to
and assigns the result in
:
| In[6]:= |
| Out[6]= |
You can give a list of right-hand values. This is useful for initializing an array:
| In[7]:= |
| Out[7]= |
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
