RE: How to Plot this equation ?
- To: mathgroup at smc.vnet.net
- Subject: [mg47104] RE: [mg47091] How to Plot this equation ?
- From: "David Park" <djmp at earthlink.net>
- Date: Fri, 26 Mar 2004 03:55:46 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Learn Mathematica syntax and use ImplicitPlot. Needs["Graphics`ImplicitPlot`"] ImplicitPlot[x Exp[x y + 0.8] + Exp[y^2] == 3, {x, -10, 10}, {y, -10, 10}, PlotPoints -> 100]; ImplicitPlot[x Exp[x y + 0.8] + Exp[y^2] == 3, {x, -2, 100}, {y, -2, 2}, AspectRatio -> 1, PlotPoints -> 100]; ImplicitPlot[x Exp[x y + 0.8] + Exp[y^2] == 3, {x, -3, 3}, {y, -2, 2}, AspectRatio -> 1, PlotPoints -> 100] David Park djmp at earthlink.net http://home.earthlink.net/~djmp/ From: why [mailto:m004202002 at yahoo.com] To: mathgroup at smc.vnet.net Hi, How I can Plot tis equation with mathematica? x exp(xy+0.8) + exp(y^2)=3 Please help me . Thank You .