I am trying to implement the following system in MATLAB. I am reading an audio signal and want to perform the operation below.
so far I have done the following:
%read the audio file
[y,Fs] = audioread('input_original.wav');
syms k x
yx = symsum(k, k, -inf, y);
%write the output
audiowrite('signal_divbb.wav',yx,Fs,'BitsPerSample',64)
is there a way to implement this signal properly? I am not familiar with MATLAB