MATHEMATICA TUTORIAL: Functions
www.cfm.brown.edu › intro › functionNov 18, 2021 · Function evaluation in Mathematica is indicated by square brackets. That is, while in mathematical notation, we write \( f(x), \) in Mathematica the correct syntax is f[x]. Ordinary parentheses are used exclusively for algebraic grouping. Thus we write (a*t) to indicate that the argument is the product of a and t.
Table of a two variable function - Mathematica Stack Exchange
https://mathematica.stackexchange.com › ...It is not clear how many columns that you want. Some of the possibilities data = Table[{a, b, f[a, b]}, {a, 0, 5}, {b, 0, 5}]; data // Flatten[#, ...