| Author |
Comment/Response |
Tobias Schmid
|
12/31/09 00:32am
Hi guys,
The function f[x,y] is plotted across the points in the table, i.e. the scale of x and y is in points. How can I use the real scale over which the Table is generated, i.e. 1..3 and 1..10 instead?
Best Regards,
Tobias
Clear[f, a, b, i, j];
f[a_, b_] := Sin[a b];
B = Table[f[i, j], {j, 1, 3, 0.1}, {i, 1, 10, 0.1}];
ListPlot3D[B, Mesh -> None, InterpolationOrder -> 3,ColorFunction -> "SouthwestColors"]
URL: , |
|