Mercurial > hg > ltpda
annotate m-toolbox/classes/@fsdata/getFfromYFs.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
rev | line source |
---|---|
0 | 1 function f = getFfromYFs(N,fs) |
2 % GETDSFROMYFS grows an evenly spaced frequency vector of N points for | |
3 % samplerate fs. | |
4 % | |
5 % | |
6 % VERSION: $Id: getFfromYFs.m,v 1.2 2011/04/08 08:56:35 hewitson Exp $ | |
7 % | |
8 % M Hewitson 2008-06-11 | |
9 % | |
10 % | |
11 | |
12 f = linspace(0, fs/2, N); | |
13 | |
14 | |
15 % END |