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

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

 Réponse acceptée

Kojiro Saito
Kojiro Saito le 26 Fév 2024

2 votes

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

1 commentaire

Tadafumi Sugi
Tadafumi Sugi le 2 Mar 2024
ありがとうございます.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 数学 dans Centre d'aide et File Exchange

Produits

Version

R2022a

Community Treasure Hunt

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

Start Hunting!