Re: ImplicitPlot Problem
- To: mathgroup@smc.vnet.net
- Subject: [mg11542] Re: [mg11475] ImplicitPlot Problem
- From: Bob Hanlon <BobHanlon@aol.com>
- Date: Sat, 14 Mar 1998 13:55:57 -0500
You need to separate the factors by a space (implied multiplication) or
preferably use an explicit multiplication operator:
ImplicitPlot[y^3-x*y^2+Sin[x*y]==8,{x,-2,2},{y,-2,2}]
You entered the formula with a variable named "xy".
Also, I assume that you first loaded the standard package
Graphics`ImplicitPlot
Needs["Graphics`ImplicitPlot`"]
Bob Hanlon
In a message dated 3/12/98 8:12:31 AM, david314@aol.com wrote:
>I am unable to get an ImplicitPlot of the following formula:
>
>y^3-xy^2+Sin[xy]==8
>
>I am using the following statement to generate the plot:
>
>ImplicitPlot[y^3-xy^2+Sin[xy]==8,{x,-2,2},{y,-2,2}]