For example, I have the following list:
{x1,op1,x2,op2,x3,op3,...}
And I would like to convert the list to the following expression:
x1 op1 x2 op2 x3 op3 ...
For example, I have the following list:
{x1,op1,x2,op2,x3,op3,...}
And I would like to convert the list to the following expression:
x1 op1 x2 op2 x3 op3 ...
Times @@ {x1, op1, x2, op2, x3, op3}. I'm sure this question has been asked before, and it's pretty easily found in the documentation as well. I am going to close it. – Mr.Wizard Jul 31 '13 at 20:43