How to determine the distance of gaussian filter?

2 次查看(过去 30 天)
Hi everyone, I was confuse on how to determine the distance of gaussian filter. there are some article mentioned that the data filtered with ~20km gaussian filter. I wonder how they determine the distance of filter? Can anyone explain in more details.
This is just my example code and attach files.
clc; clear all; close all;
A = load('Example.txt');
x = A(:,2);
y = A(:,6);
Filty1 = imgaussian(y,3);
Filty2 = imgaussian(y,6);
plot(x,y,'.-b'); hold on;
plot(x,Filty1,'.-r'); hold on;
plot(x,Filty2,'.-g'); hold on;

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Digital Filter Analysis 的更多信息

产品


版本

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by