X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=CreaPhase.git;a=blobdiff_plain;f=octave_packages%2Fsignal-1.1.3%2Fsampled2continuous.m;fp=octave_packages%2Fsignal-1.1.3%2Fsampled2continuous.m;h=92102aec80ab4f444ef081d970f1267de90aca50;hp=0000000000000000000000000000000000000000;hb=c880e8788dfc484bf23ce13fa2787f2c6bca4863;hpb=1705066eceaaea976f010f669ce8e972f3734b05 diff --git a/octave_packages/signal-1.1.3/sampled2continuous.m b/octave_packages/signal-1.1.3/sampled2continuous.m new file mode 100644 index 0000000..92102ae --- /dev/null +++ b/octave_packages/signal-1.1.3/sampled2continuous.m @@ -0,0 +1,43 @@ +## Copyright (C) 2009 Muthiah Annamalai +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +## Usage: +## +## xt = sampled2continuous( xn , T, t ) +## +## Calculate the x(t) reconstructed +## from samples x[n] sampled at a rate 1/T samples +## per unit time. +## +## t is all the instants of time when you need x(t) +## from x[n]; this time is relative to x[0] and not +## an absolute time. +## +## This function can be used to calculate sampling rate +## effects on aliasing, actual signal reconstruction +## from discrete samples. + +function xt = sampled2continuous( xn , T, t ) + if ( nargin < 3 ) + print_usage() + endif + + N = length( xn ); + xn = reshape( xn, N, 1 ); + [TT,tt]= meshgrid(T*(0:N-1)',t); + S = sinc((tt -TT)./T); + xt = S*xn; + return +end