I plot a table in Mathematica using ListPlot3D. The table contains very simple data but the resulting plot is very weird at least for me. I expect that the plot should look like a rectangle in 3D but there is a jump in the plot. Could you please help me to figure out what is the problem? Here is the information about the table and the plot picture.
Let
wpb1New = Table[{1/10000 + i/100000}, {i, 0, 90}];
and
wb1New = Table[{1 + i/100}, {i, 0, 200}];
Then the ListPlot3D of the following table looks like
TItest = Flatten[Table[{wb1New[[i]], wpb1New[[j]], wpb1New[[j]]}, {i, 1, 201}, {j, 1, 91}], 1];

ListPlot3D[TItest]gives an error on Mathematica v12.2 – Ulrich Neumann Oct 18 '23 at 15:31wpb1Newandwb1Newwithout braces in theTable: that will give you a more reasonable list structure forTItest. That does not solve the problem you mention though. – MarcoB Oct 18 '23 at 16:19Tablein definitions ofwpb1Newandwb1Newas MarcoB suggested in comments; (2) UseundoScaling[TItest]@ListPlot3D[reScale@TItest]where the functionsreScaleandundoScalingare from this answer . – kglr Oct 18 '23 at 19:26wpb1New = Table[1/10000 + i/100000, {i, 0, 90}]; wb1New = Table[1 + i/100, {i, 0, 200}];– cvgmt Oct 18 '23 at 22:39