How to use the parameters of other functions within the ‘cellfun’ function?

3 ビュー (過去 30 日間)
Fercho_Sala
Fercho_Sala 2021 年 4 月 29 日
コメント済み: Fercho_Sala 2021 年 4 月 29 日
Hello guys, just a simple question. I don’t find the way how to use the parameters ‘movemedian’ , ‘lowess’ and so on .. belonging to the ‘smoothdata’ function inside the ‘cellfun’ , how can you do this? Thank you.
x=cellfun(@smoothdata,C1,('movemedian',100),'UniformOutput',false); %there is a mistake here calling the parameters for 'smoothdata'

採用された回答

Stephen23
Stephen23 2021 年 4 月 29 日
編集済み: Stephen23 2021 年 4 月 29 日
f = @(a)smoothdata(a,'movemedian',100);
x = cellfun(f,C1,'UniformOutput',false);
  9 件のコメント
Stephen23
Stephen23 2021 年 4 月 29 日
編集済み: Stephen23 2021 年 4 月 29 日
If you want to keep pks, etc. to use after the loop then you will need to use indexing into some variable, e.g.:
N = numel(smt1);
pks = cell(1,N);
locs = cell(1,N);
widths = cell(1,N);
proms = cell(1,N);
for cv = 1:N
..
[pks{cv},locs{cv},widths{cv},proms{cv}] = findpeaks(..);
..
end
Fercho_Sala
Fercho_Sala 2021 年 4 月 29 日
@Stephen Cobeldick thank's.. using your structure is the best and the fastest solution.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCorrelation and Convolution についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by