In Python, one can find the type and memory location of a function:
>>> def foobar(x):
... x+1
...
>>> foobar
<function foobar at 0xb764d224>
>>>
What's the analogue of this for Mathematica and Matlab, respectively?
|
In Python, one can find the type and memory location of a function:
What's the analogue of this for Mathematica and Matlab, respectively? |
|||||||||||||
|
|
In MATLAB, you can run
in the MATLAB Command Window to force it to display the variable as its memory location, rather than as its value. (This is an undocumented (AFAIK), but publicly known, option for the FORMAT function.) See HELP FORMAT to determine what your current display format is, and more importantly, how to restore it, once you're done looking at the memory locations. |
|||
|
|