Hello,
I'm new with Mathematica, and I search to write an expression that compute the product of two sets.
Table[f[x,y] , {x,S1},{y,S2} ] is nice to write, but as Cross function, it produce 2 parantheses levels rather than one.
{ { f[a,b], f[a,c] } , { f[z,b], f[z,c] } }
I expect to compute { f[a,b], f[a,c], f[z,b], f[z,c] }
Flatten didnt make things better, because f return List object as result.
Sure I dont know how to manipulate data, I really need to progress. Could someone help ?
Kind Regards,