Date: Feb 23, 2013 11:31 PM Author: Luiz Melo Subject: A nonconventional ListContourPlot Good day,
x[a_,b_] = a*b;
y[a_,b_] = Cos[a^2 + b];
z[a_,b_] = Sin[a + b^2];
data = Table[{x[i,j], y[i,j], z[i,j]}, {j, -1, 1, 0.1}, {i, -2, 2, 0.1}];
For the table above, is it possible to see a ListContourPlot of the z
component as a function of x and y (the values of x and y on the
horizontal and vertical axes, respectively)?
Thank you in advance
Luiz Melo