Mercurial > hg > ltpda
annotate m-toolbox/classes/@fsdata/getFfromYFs.m @ 20:d58813ab1b92 database-connection-manager
Update ltpda_uo.submit
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
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 |