from
Time folding for continuous signals
by Nikhil Prathapani
Performing Time folding operation on continuous signals
|
| timefoldc.m |
clear all;
close all;
clc;
t=0:0.01:10;
x=sin(2*pi*t);
subplot(2,1,1);
plot(t,x);
title('input signal');
xlabel('time');
ylabel('amplitude');
subplot(2,1,2);
plot(-t,x);
title('folded signal');
xlabel('time');
ylabel('amplitude');
display(x);
|
|
Contact us