| Original Message (ID '307606') By Bill Simpson: |
| Can you adapt this to what you need?
In[1]:= speed={1,2,3}
Out[1]= {1,2,3}
In[2]:= angle=Map[Cos,{5,6}]
Out[2]= {Cos[5],Cos[6]}
In[3]:= Outer[Times,speed,angle]
Out[3]= {{Cos[5],Cos[6]},{2 Cos[5],2 Cos[6]},{3 Cos[5],3 Cos[6]}} |
|