| Author |
Comment/Response |
george
|
05/15/01 09:56am
Is there a easy way to take this kind of a cross product?
{ {a,b,c}, {d,e,f}, .... } x {x,y,z}
returns
{ Cross[{a,b,c},{x,y,z}], Cross[{d,e,f},{x,y,z}], ... }
Only way I can do is using a while loop. but I want to use something simple like this
Map[Cross,{{a,b,c},{d,e,f}..}, {x,y,z}]
URL: , |
|