Re: ListPlot question
- To: mathgroup at smc.vnet.net
- Subject: [mg125884] Re: ListPlot question
- From: Murta <rodrigomurtax at gmail.com>
- Date: Fri, 6 Apr 2012 05:51:48 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jljq20$ct8$1@smc.vnet.net>
On Apr 5, 6:53 am, JK <junkyung.... at gmail.com> wrote: > I have a user defined function f[x]. I want to plot it discretely > using ListPlot. > Specifically, I want to do: > > ListPlot[f[x],{x,0,0.5,0.1}] > > So I want plot 5 point from the function with 5 sequence of arguments. > However, the figure has an axis value of 0 to 5 instead of 0 to 0.5. > Is there anyway to fix this? > > Thanks > JK Hi JK Maybe this works for what you need. ListPlot[Table[f[x],{x,0,0.5,0.1}],PlotRange -> {{0, 5}, All}] best regards Murta