| Author |
Comment/Response |
Ben Kovitz
|
10/16/04 11:39pm
Aaron, maybe you're looking for the Map function (abbreviated /@):
f[a_] := Tan[a[[1]]/a[[2]]]
f /@ {{234, 54}, {252, 123}, {141, 544}, {576, 242}}
Or maybe Apply (abbreviated @@@ to iterate over a list):
f[x_, y_] := Tan[x/y]
f @@@ {{234, 54}, {252, 123}, {141, 544}, {576, 242}}
Ben
URL: , |
|