Open veretin opened 2 weeks ago
As a quick workaround, does it suffice to use multiply replace_($k,newvector);
inside the argument environment?
No, I want to do more complicated things like
id $k.$k^j? = j * $k.$k^(j-1) * $k.V;
In that case one could hopefully do something like:
multiply replace_($k,tmp);
id tmp.tmp^j? = ... ;
multiply replace_(tmp,$k);
but I will take a look at the direct dollar-var version when I get a chance.
Another workaround:
id p.p^j? * replace_(p,$k) = j * p.p^(j-1) * p.V * replace_(p,$k);
where p
is a vector.
Hello, I have problem with the following code:
The substitution in "id $k = newvector;" is ignored. By the way, the same code with symbols works.
Best regards, OVeretin