| Author |
Comment/Response |
Bill Simpson
|
10/12/12 2:00pm
This will not stop Mathematica from adding the two squares of integers together, but perhaps it is acceptable
In[1]:= myfunction[x_,y_,z_]:=x^2+y+z^2;
Map[myfunction[#[[1]],y,#[[2]]]&,{{1,5},{2,6},{3,7}}]
Out[2]= {26+y,40+y,58+y}
URL: , |
|