The CTFT of yt can be written in terms of its magnitude and
Solution
load splat;
y=y(1:8192);
N=8192;
fs=8192;
sound(y,fs);
Y=fftshift(fft(y));
%%part a
w=[-pi:2*pi/N:pi-pi/N]*fs;
plot(w,abs(Y));
y=ifft(fftshift(Y));
y=real(y);
%%part b
Y1=conj(Y);
y1=ifft(fftshift(Y1));
y1=real(y1);
sound(y1,fs);
%ifft(Y1(jw))=y(-t);thats is the complex conjucative of fft(y(t))
%willproduce the image version(y(-t)) y(t).
%% oriented subject.
%%part d
Y2=abs(Y);
y2=ifft(fftshift(Y2));
y2=real(y2);
sound(y2,fs);
%%Part E
Y3=angle(Y);
y3=ifft(fftshift(Y3));
y3=real(y3);
sound(y3,fs);
% when we paly the magitude based signal we can hear the sound which
% represt the original signal.But when we taking the phase based signal we
% cant hear anything. which says the magnitude of the CTFT will hold the
% crucial information of original signal.
%% Thanking you. if you have doubts u can contact me %%whatsaap +919790819924
