3D surface plot in linear regression model
6 次查看(过去 30 天)
显示 更早的评论
Hi, I used fitlm to obtain linear regression of an experiment in which response Mass is related to H, T and V. I obtained the model with reasonable R-squares and p-value. So I assume the regression model is fine. Now I would like to plot a 3D surface, visualise the response surface of Mass(z-axis) related to H(x-axis) and V(y-axis). All I can find in Matlab tutorial is plotsice function that seems relevant but what I want is a 3D surface. Anyone knows how to do this? Thank you.
0 个评论
采纳的回答
John D'Errico
2017-8-16
编辑:John D'Errico
2017-8-16
No. You have a FOUR dimensional thing. This is not a surface in 3 dimensions. It is a surface in FOUR dimensions, thus Mass as a function of three variables, (H,T,V).
If you fix the 4th variable that you seem to be ignoring (T) at some value, then use meshgrid to generate points in a grid of H and V. Then evaluate the model at all those points, using surf to plot the result. The result will be valid for the given value of T as chosen in advance.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!