How can I change the retime function in order to do a median(A,'omitnan')?

조회 수: 3 (최근 30일)
Hi, I would like to use retime to calculate monthly median.
I tried to use median as a function and it works if I do not specify anything but I I want to add 'omitnan' it does not work.
It gives:
retime(Liv_dom_an, 'monthly', @median(Liv_dom_an{:,:},'omitnan'))
Error: Unbalanced or unexpected parenthesis or bracket.
I tried creating a specific function but I'm not able to make it works.
Thanks!
  댓글 수: 3
Luna
Luna 2019년 7월 18일
What is Liv_dom_an? can you share the data and explain what kind of output you want to obtain?
Steven Lord
Steven Lord 2019년 7월 18일
Mario Chiappelli: please don't make copies of MathWorks functions, especially where there's a way (as Akira Agata showed) to accomplish the task without doing so. That can lead to confusion where the modified function behaves differently than the unmodified function later on, after you've forgotten that you modified the function.

댓글을 달려면 로그인하십시오.

채택된 답변

Akira Agata
Akira Agata 2019년 7월 18일
How about the following?
retime(Liv_dom_an, 'monthly', @(x) median(x,'omitnan'))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by