I am still relatively new to Mathematica, so please bear with my question. I have the following statement that works perfectly well:
Table[findcvec[phif, phit, v1[[i]], v2[[i]], +1], {i, Length[v1]}]
Now, I would like to make a Mathematica shorthand version of this statement using #
, &
, etc. But this attempt fails:
MapThread[findcvec[phif, phit, #1, #2, +1]] & {v1, v2}
Could someone please tell me the correct way of doing this?
This might be a duplicate, but I couldn’t any previous question that addresses this specifically. Thank you!