| Author |
Comment/Response |
Bill Simpson
|
02/01/13 2:12pm
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]}}
URL: , |
|