this.calcCode += "\\\\\\hline\\hline\n";
for (double x = xMin; x <= xMax; x += (xMax - xMin + 1) / xNum) {
this.calcCode += "$" + StaticMethods.round(x, this.roundDigits) + "$";
for (double y = yMin; y <= yMax; y += (yMax - yMin + 1) / yNum) {
this.calcCode += " & $" + StaticMethods.round(f.eval(x, y), this.roundDigits) + "$";
}
this.calcCode += "\\\\\\hline\n";
}
this.calcCode += "\\end{tabular}}";