Re: Plot of x=4
- To: mathgroup at smc.vnet.net
 - Subject: [mg7174] Re: Plot of x=4
 - From: Michael.Chisholm at news.nero.net
 - Date: Tue, 13 May 1997 01:58:13 -0400 (EDT)
 - Organization: Network for Education and Research in Oregon
 - Sender: owner-wri-mathgroup at wolfram.com
 
I believe she wanted to plot x=4, not f[x]=4.  x=4 isn't a function,
so Plot[] isn't going to work... You could do it parametrically, like
ParametricPlot[{4,t},{t,-1,1}].  This would plot x=1 from y=-1 to y=1.
-andy
TTCJ34A at prodigy.com ( JOHN C ERB) wrote:
>>We want to plot the function x=4 , but we can not do that. Do you 
>know
>>how to do it, help us please.
>
>You can use Plot:
>Either directly:
>Plot[4,{x,0,5},PlotStyle->{RGBColor[1,0,0]}];
snip