Is it possible to access the code behind the identification toolbox?

4 ビュー (過去 30 日間)
mathrocks
mathrocks 2015 年 9 月 25 日
回答済み: mathrocks 2015 年 9 月 25 日
I would like to know how the identification toolbox determines the pw linear functions. How do the breakpoints relate to the pw functions?

回答 (2 件)

the cyclist
the cyclist 2015 年 9 月 25 日
編集済み: the cyclist 2015 年 9 月 25 日
Many MATLAB and Toolbox functions are written in MATLAB itself. For those, you typically open them in the Editor window with
edit functionname.m
and see what is going on "under the hood". However that is not the case all functions. Many are not written in MATLAB, and are not editable.
  2 件のコメント
Image Analyst
Image Analyst 2015 年 9 月 25 日
If you can edit an m-file, sometimes you can see some of the code, but the real heavy lifting is done by a call to a DLL inside that m-file, so you can only get so far. They'll do that (I think) either for performance (speed) reasons or to keep that part of the source code proprietary.
the cyclist
the cyclist 2015 年 9 月 25 日
One afterthought: The documentation (including the headers of functions) often cites reference material for the algorithms being used. These can be handy for determining what MATLAB is doing.

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


mathrocks
mathrocks 2015 年 9 月 25 日
Thank you. I will see if I can access/edit the source code by using your advice.

カテゴリ

Help Center および File ExchangeLinear Model Identification についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by