Prev: directory name too long
Next: Pchip
From: Tim Jones on 15 Oct 2006 20:10 I am trying to run the function 'movavg' with no success. What should i include to be able to run it? which package? Thanks
From: NZTideMan on 15 Oct 2006 20:51 Tim Jones wrote: > I am trying to run the function 'movavg' with no success. > What should i include to be able to run it? which package? > > Thanks Never heard of it. Type: which movavg and tell us what it says.
From: Joe on 15 Oct 2006 22:23 I don't know of any built-in function called "movavg" unless it is from a toolbox or something. I have used the function filter to do a moving average. Try: filter(ones(1,windowSize)/windowSize,1,data) where data is your column data vector and windowSize is obviously the length of your window. Give that a try. Tim Jones wrote: > I am trying to run the function 'movavg' with no success. > What should i include to be able to run it? which package? > > Thanks
From: Roger Stafford on 15 Oct 2006 22:38 In article <ef43a8e.-1(a)webcrossing.raydaftYaTP>, "Tim Jones" <hghattas(a)hotmail.com> wrote: > I am trying to run the function 'movavg' with no success. > What should i include to be able to run it? which package? > > Thanks -------- Look at: http://www.mathworks.com/access/helpdesk/help/toolbox/finance/ in the Financial Toolbox for 'movavg'. Roger Stafford
From: Tim Jones on 16 Oct 2006 08:57
This function is in the financial ToolBox. Which file should i include in Matlab to be able to use the financial ToolBox? Thanks Roger Stafford wrote: > > > In article <ef43a8e.-1(a)webcrossing.raydaftYaTP>, "Tim Jones" > <hghattas(a)hotmail.com> wrote: > >> I am trying to run the function 'movavg' with no success. >> What should i include to be able to run it? which package? >> >> Thanks > -------- > Look at: > > <http://www.mathworks.com/access/helpdesk/help/toolbox/finance/> > > in the Financial Toolbox for 'movavg'. > > Roger Stafford > |