retime: apply different method for different columns

I have a timetable with column 2 temperature and column 3 rainfall. I want to apply mean for column 2 and variance for column 3. Can one this be done with one retime function application?

2 comentarios

Isn't this related to one of your previous questions?
alpedhuez
alpedhuez el 8 de Jul. de 2020
Yes. But I want to understand whether there is a simpler expression.

Iniciar sesión para comentar.

 Respuesta aceptada

It is not currently possible to apply different methods for different columns using a single retime function. You may try this:
outputTable = [retime(inputTable(:,2),'hourly','mean'), retime(inputTable(:,3),'hourly', @(x) var(x))];

Más respuestas (0)

Categorías

Más información sobre Categorical Arrays en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 7 de Jul. de 2020

Respondida:

el 10 de Jul. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by