After playing with Mathematica's symbolic and numerical capabilities, I find it to be a decent programming language, too. However, something making it less appealing as a general-purpose language is the lack of C-like struct data type (or the record type as known in Pascal). How can I get around this problem?
|
feedback
|
|
If I understand your question correctly, you can simply write things like this: x[foo] = bar x[bar] = baz x[1] = 7 x[7] = 1 ?x Then to access the data for any specific index just type the same (e.g., | |||||||||||
feedback
|
|
You can use a Mathematica rule lists to mimic a C-like struct data type. E.g.,:
You can then access the record's fields by using the
yields
yields To update a field of a record, prepend the updated field to the list:
Also see the Mathematica documentation on transformation rules. | |||||
feedback
|
|
The transformation rules approach has the same drawback as the bracket approach. For instance, suppose you tried: (lastName /. person) = "Harvey" The result would be an error, not an assignment. The method works for retrieval but not for storage. | |||
|
feedback
|
|
This way can work:
and also for changing the elements of a list field you can so the following:
which returns:
| ||||
|
feedback
|