2013-06-02 57 views
3

如何在R中绘制多元多项式,如f(x,y)= 2 + x + x * y^2 + 3 * x^3 * y^2?在R中绘制多元多项式

对于单变量多项式,polynom包执行它,但我没有找到多变量对应。

+0

也许'emdbook :: curve3d'? –

+0

我想这里是几个解决方案的问题:http://stackoverflow.com/questions/6720526/plotting-3d-data-in-r – storaged

回答

4
library(emdbook) 
curve3d(2 + x + x*y^2 + 3*x^3*y^2) 

enter image description here