Plotting - GitHub Pages
https://mresources.github.io/tutorial/using-mathematica/useful...Plotting. Mathematica has a host of different plot functions, but usually one only needs three of them: Plot. Plot takes a function as its first argument and a variable and range as its second one. Example: Plot[Sin[x], {x, - π, π}, ImageSize -> Small] The function can also be defined outside of the Plot function itself: . sinx = Sin[x]; Plot[sinx, {x, - π, π}, ImageSize -> Small]
Table—Wolfram Language Documentation
reference.wolfram.com › language › refTable [ expr, spec] first evaluates spec, then localizes the variable specified and successively assigns values to it, each time evaluating expr. Table effectively uses Block to localize values or variables. Table [ expr, spec 1, spec 2] is effectively equivalent to Table [ Table [ expr, spec 2], spec 1].