| Author |
Comment/Response |
Harold
|
10/13/09 08:21am
I expected this to return a list of successive derivatives, but it doesn't. It returns a list of zeros...
i = {1, 2, 3, 4, 5};
D[Log[x], {x, i}]
i =.;
In contrast, this returns a list of some powers of two (as expected)...
i = {1, 2, 3, 4, 5};
2^i
i =.;
Thanks in advance for any insight,
-Harold
URL: , |
|