MathGroup Archive 2004

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: How to plot...

  • To: mathgroup at smc.vnet.net
  • Subject: [mg46045] Re: [mg46030] How to plot...
  • From: "Sseziwa Mukasa,,(978) 536-2359" <mukasa at jeol.com>
  • Date: Tue, 3 Feb 2004 18:20:49 -0500 (EST)
  • References: <200402030821.DAA17366@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

On Feb 3, 2004, at 3:21 AM, Oliver Kowalke wrote:

> Hello,
>
> I want to plot sin(x)/x on x=0.
>
> f3 := Which[x==0,1,0<x,Abs[Sin[x]/x]];
>
> F3 ist defined on x=0 (analytische Fortsetzung).
> How can I force mathematica to plot the graph on x=0?
> thx,

Either

Plot[Which[x == 0, 1, 0 < x, Abs[Sin[x]/x]], {x, 0, 10}]

or

f3[x_] := Which[x==0,1,0<x,Abs[Sin[x]/x]]

Plot[f3[x],{x,0,10}]

Regards,

Ssezi


  • References:
  • Prev by Date: help for time series basic operations
  • Next by Date: RE: How to plot...
  • Previous by thread: How to plot...
  • Next by thread: RE: How to plot...