I am running isympy from within emacs, and do not understand the following error:
In [64]: k = 0 In [65]: for i in range(3): ....: for j in range(3): ....: if i <= j: ....: for l in range(6): ....: J[k,l] = diff(Y[i,j], vars[l]) ....: k=k+1 ....: IndentationError: expected an indented block -- As far as I can see, this block is finnished, and it should start to run! ¿What is wrong? Kjetil "If you want a picture of the future - imagine a boot stamping on the human face - forever." George Orwell (1984) -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
