Parse varies of pair variable into function?

1 回表示 (過去 30 日間)
Patrick C
Patrick C 2019 年 6 月 24 日
コメント済み: Patrick C 2019 年 6 月 25 日
I am writing my own function by using findpeaks and how can I parse those value into the findpeaks function?
tmp = {'MinPeakDistance',0.5, 'MinPeakHeight', -1.05};
%this may change such as ['MinPeakDistance',0.5, 'MinPeakHeight', 10, 'MinPeakProminence',0.06]
function myFindpeaks = myFunction(x, y, tmp)
findpeaks(y, x, tmp);
return
I know the function is incorrect, but I can't really know how to express in matlab syntax.
  3 件のコメント
Andreas Dorner
Andreas Dorner 2019 年 6 月 25 日
編集済み: Andreas Dorner 2019 年 6 月 25 日
findpeaks(y, tmp{:});
Maybe? You dont need x in findpeaks and tmp{:} just pastes the cell content.
edit:
findpeaks(y, x, tmp{:}); %should also work
Patrick C
Patrick C 2019 年 6 月 25 日
Himanshu Rai sorry for confuse. but I got the answer, plz check the below comment.
Andreas Dorner Yes, it works. Thanks a lot!

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

採用された回答

Pullak Barik
Pullak Barik 2019 年 6 月 25 日
The comment by Andreas Dorner should help.
Basically, using
findpeaks(y, x, tmp{:});
should work out for you.
  1 件のコメント
Patrick C
Patrick C 2019 年 6 月 25 日
Thank you so much for the help!!!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Estimation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by