フィルターのクリア

function structure and explanation

2 ビュー (過去 30 日間)
Tino
Tino 2019 年 6 月 18 日
コメント済み: Adam Danz 2023 年 8 月 7 日
Hello I am using the function Smoothdata ( x , 'gaussian'); I want to know the how this function is implemented. The formula/method and how matlab implements this computation. Please how do I get the information.
Thanks for your help in advance.
Tino

採用された回答

Adam Danz
Adam Danz 2019 年 6 月 18 日
編集済み: Adam Danz 2019 年 6 月 18 日
Here's all the information available (link below). Start by reading the "description" section. Also see the "Algorithms" sectoin.
You can read about any function by searching for it in the documentation (use the search field) or by using
doc smoothdata
If the documentation does not provide enough detail, fortunately the code in smoothdata is available to view. Open smoothdata and search for "if method == "gaussian"" for the gaussian method. It uses the undocumented function smoothgauss() which is also available to view. You could open smoothgauss(), put a breakpoint at the first line, then run your code. Once the execution reaches the breakpoint you can step through the code to see what it's doing.
  2 件のコメント
Julio Utreras
Julio Utreras 2023 年 8 月 1 日
Is there a way to find the code for smoothgauss()? I can't find much info about it anywhere.
Adam Danz
Adam Danz 2023 年 8 月 7 日
What is smoothgauss? Is this a 3rd party function?
If it's written in an m-file and the file is on your MATLAB path, execute open smoothgauss to see the code.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLive Scripts and Functions についてさらに検索

タグ

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by