Why do you need this, and if you need it, why don't you have the formula for it? Where did you hear of it? Didn't they give you the formula?????
As we know there is a sinc function in matlab which calculates the sinc of the data. But I need to get a sinc function that look like the image. what mathematical properties should I change to turn the standard sinc function into one like this?
Neeta Dsouza answered .
2025-11-20
x = 1:400; y = abs(0.055 * sinc((x - 195) / 12)) - 0.001; % Smooth out a bit y = conv(y, [1,1,1]/3, 'same'); plot(x, y, 'b-', 'LineWidth', 3); grid on; % Enlarge figure to full screen. set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]); % Give a name to the title bar. set(gcf, 'Name', 'Demo by ImageAnalyst', 'NumberTitle', 'Off')