TL;DR: I want to plot a 2D function on the $z=0$ plane of a 3D plot and have no idea how to do so.
I have a set of experimental data and a function giving its theoretical value. Say these are given by datastuff and th[input1,input2], respectively. The format of datastuff's entries is {input1,input2,output}. Now say I make two plots:
resids = Table[{datastuff[[i, 1]], datastuff[[i, 2]],
Abs[datastuff[[i, 3]] -
th[datastuff[[i, 1]], datastuff[[i, 2]]]]}, {i, 1,
Length[datastuff]}];
Data=Show[ListPointPlot3D[datastuff],Plot3D[th[ph1,ph2],{ph1,0,2Pi},{ph2,0,2Pi}]]
Errors=ListDensityPlot[resids]
I want to have the flat 2D colorplot "Errors" plotted on the $z=0$ plane underneath the "Data" plot. How do I do this? I don't even know where to start!
