Re: Plot derivative
- To: mathgroup at smc.vnet.net
- Subject: [mg65063] Re: Plot derivative
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Sun, 12 Mar 2006 23:59:49 -0500 (EST)
- Organization: The Open University, Milton Keynes, UK
- References: <dulto3$3ia$1@smc.vnet.net> <durllg$m6k$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Helen Read wrote: >> There were a great many duplicate answers to this question. I >> have combined them all in this post. >> >> Moderator >> >>> From: Marco Gabiccini <m.gabiccini at ing.unipi.it> To: mathgroup at smc.vnet.net >> >> Try >> >> Plot[Evaluate[Dt[Sin[x], x]], {x, 0, 1}] > > [snip duplicate answers] > > I'm surprised nobody suggested the following: > > f[x_]=Sin[x] > > Plot[f'[x],{x,0,1}] > > Or even the simpler one Plot[Sin'[x], {x, 0, 1}]; /J.M.