Multiplication without using temp measure
Hi everybody,
I have a question. Suppose we have two measures: a and b.
I want to perform the operation of a kind:
a = a * b
But I have to make it in another way by using temp measure:
tmp = a
a = tmp * b
Is there any way to make it directly without using temp measure?