Table—Wolfram Language Documentation
reference.wolfram.com › language › refTable[expr, n] generates a list of n copies of expr. Table[expr, {i, imax}] generates a list of the values of expr when i runs from 1 to imax. Table[expr, {i, imin, imax}] starts with i = imin. Table[expr, {i, imin, imax, di}] uses steps di. Table[expr, {i, {i1, i2, ...}}] uses the successive values i1, i2, .... Table[expr, {i, imin, imax}, {j, jmin, jmax}, ...] gives a nested list.
How to make a table from two lists? - Mathematica Stack Exchange
mathematica.stackexchange.com › questions › 101769list1 = {115.366, 103.583, 115.24, 91.4648, 93.1291, 485.744, 427.888,489.401, 403.942} list2 = {114.062, 105.17, 114.857, 91.6497, 93.2112, 398.588, 458.713,410.015, 380.659} I want these lists to form a table that looks like this. 115.366 114.062 103.583 105.17 115.24 114.857 and so on.
Create Lists —Wolfram Language Documentation
reference.wolfram.com › language › howtoCreate Lists. Lists are very important and general structures in the Wolfram Language. They allow you to treat collections of all kinds of objects as a single entity. There are many ways to construct them. Use the shorthand notation { } to make a list: Copy to clipboard. Or use List, which automatically is changed to { }: Copy to clipboard.