Plot - LinearFilter/List Problem
- To: mathgroup at smc.vnet.net
- Subject: [mg64486] Plot - LinearFilter/List Problem
- From: "Lea Rebanks" <lrebanks at netvigator.com>
- Date: Sun, 19 Feb 2006 05:35:53 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Hi All,
Given the following
data={1,2,3,4,5,6,7,8,9};
dd=FoldList[Plus,0,data];
Length[data]
9
Length[dd]
10
nn=Linear Filter[dd,{1/2,1/2}]
Length[nn]???? Thought it would be = 10 = dd ????
2
ListPlot[dd,PlotJoined->True];
ListPlot[nn,PlotJoined->True]; ?????
I am trying to plot the list "nn" (the LinearFilter[results]) in this
simple.
Many thanks for your attention & help.
Lea Rebanks...