Re: Plot function
- To: mathgroup at smc.vnet.net
- Subject: [mg84980] Re: Plot function
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Mon, 21 Jan 2008 07:01:29 -0500 (EST)
- Organization: Uni Leipzig
- References: <fn1o2d$9oe$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi,
beside the obvious way to Solve[] (that work not in your example)
With[{k = 1, r = 1},
ContourPlot[
x == k*r*ArcSin[y/r] - r*Cos[ArcSin[y/r]], {x, -2, 2}, {y, -Pi,
Pi}]
]
will do it ..
Regards
Jens
Kinjal Basu wrote:
> Hello..
>
> Im Having trouble with the Plot[] Function.
> It seems to plot a function in x, given the range of x.
>
> But if i have x as a function of y. How can i plot it ???
> My Function looks as
>
> x= k*rArcSin[y/r] -rCos[ArcSin[y/r]]
>
> k and r are constants
>
> Please tell me how i can plot this...
>
> An early reply will be very helpful.
>
> Thanking in Advance,
> Kinjal.
>