mad関数をcell​funで使いたいので​すが,平均値か中央値​を選ぶオプションの設​定方法がわかりません​.

%中央値絶対偏差
mad(x,0)
%平均値絶対偏差
mad(x,1)
%cellfunの場合
cellfun(mad,x,1)
この場合だとうまくいきません.
どうすればいいでしょうか?

 Akzeptierte Antwort

Kojiro Saito
Kojiro Saito am 26 Feb. 2024

2 Stimmen

無名関数というものを使ってみてください。
cellfun(@(a) mad(a, 1), x, 'UniformOutput', false);

1 Kommentar

Tadafumi Sugi
Tadafumi Sugi am 2 Mär. 2024
ありがとうございます.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Produkte

Version

R2022a

Community Treasure Hunt

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

Start Hunting!