What is the effect of changing standard deviation of Gaussian Filter in removing noise?

Поділитися
Вставка
  • Опубліковано 21 жов 2024
  • Code:
    clc
    clear all
    close all
    warning off
    x=cumsum(randn(1,10000));
    g=fspecial('gaussian',[1 50],2);
    y=conv(x,g);
    plot(x,'b');
    hold on;
    plot(y,'r','linewidth',2);
    g=fspecial('gaussian',[1 50],10);
    ya=conv(x,g);
    plot(ya,'g','linewidth',2);
    legend('Noisy Signal','SD 2','SD 10');
    Prerequisite:
    1D Gaussian filter to remove noise (with code)
    • 1D Gaussian filter to ...
    Learn Digital Signal Processing using MATLAB:
    • Digital Signal Process...
    Learn Complete Image Processing & Computer Vision using MATLAB:
    • Digital Image Processi...
    Learn Complete Machine Learning & Data Science using MATLAB:
    • Data Science & Machine...
    #MATLAB #DigitalSignalProcessing

КОМЕНТАРІ • 6