フィルターのクリア

How write a function that takes a matrix and period omega?

3 ビュー (過去 30 日間)
Pratik Patel
Pratik Patel 2020 年 3 月 15 日
コメント済み: Sriram Tadavarty 2020 年 3 月 15 日
function F = fftfuntion(D, omega)
%Input: a matrix D ∈ RN×2, Di = (xi,yi), and the period ω
check = 0;
x = D(:,1);
y = D(:,2);
end
I need to write a function that takes as input a matrix D RN×2, Di = (xi,yi), and the period ω. Here is what I have so far. Am I on the right track?

採用された回答

Sriram Tadavarty
Sriram Tadavarty 2020 年 3 月 15 日
Hi Prathik,
You are on the right track itself.
Ensure that you define the output variable F and use omega input in the function.
Regards,
Sriram
  4 件のコメント
Pratik Patel
Pratik Patel 2020 年 3 月 15 日
This is where it gets tricky... I need to return an output of a plot that uses the fft function to clean the noise. This function doesn't work when I test it against a dataset.
function F = fftfuntion(D, omega)
%Input: a matrix D ∈ RN×2, Di = (xi,yi), and the period ω
%Output a plot showing a fit of the data without noise.
%Do this by cleaning the noise in the frequency space.
check = 0;
x = D(:,1);
y = D(:,2);
t = 0:0.01:2*pi;
plot(t,x)
y = fft(x)
end
Sriram Tadavarty
Sriram Tadavarty 2020 年 3 月 15 日
There are few things missed in the code. Why is omega not used? Should the fft(x) be F rather than y?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFourier Analysis and Filtering についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by