Re: NIntegrate and Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg30434] Re: NIntegrate and Plot
- From: "Stephen P Luttrell" <luttrell at signal.dra.hmg.gb>
- Date: Sat, 18 Aug 2001 04:04:58 -0400 (EDT)
- Organization: Defence Evaluation & Research Agency
- References: <9lig3d$ipu$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Try this:
With[{betaN = 121.643, n = 2},
Plot[NIntegrate[Sech[betaN * x^n]^2, {x, 0, X}], {X, -1, 1},
PlotRange -> All]
];
--
Stephen P Luttrell
QinetiQ, Malvern, U.K.
"Yasvir Avindra Tesiram" <y.tesiram at pgrad.unimelb.edu.au> wrote in message
news:9lig3d$ipu$1 at smc.vnet.net...
> I would like to plot the integral of,
> (Sech[betaN * x^n])^2 ,
> where beatN=121.643 and n=2 say.
>...