max between 2 timeseries signals

6 visualizaciones (últimos 30 días)
Tania Izquierdo
Tania Izquierdo el 14 de Nov. de 2016
Comentada: Ahmet Cecen el 14 de Nov. de 2016
I have two signals generated by timeseries. I would like to compare them and get the signal result. I use the C=max(A,B) but I got errors
Error using timeseries/utStatCalculation (line 45) A specified property is missing a corresponding value.
Error in timeseries/max (line 25) out = utStatCalculation(this,'max',varargin{:});
Error in test_signal_C (line 17)
What function should I use to calculate the max?

Respuestas (2)

Ahmet Cecen
Ahmet Cecen el 14 de Nov. de 2016
Maybe C=max(A.Data,B.Data)? You problem definition is a little vague, what exactly are you trying to find?
  1 comentario
Ahmet Cecen
Ahmet Cecen el 14 de Nov. de 2016
Use comment instead of a new answer.
You can find the indices that correspond to the maximum values using:
[M,Index] = max()
Then access A.Time(Index) to find the time.

Iniciar sesión para comentar.


Tania Izquierdo
Tania Izquierdo el 14 de Nov. de 2016
I try to find the maximum value comparing two ramp signals. I have implement your suggestion but I have problems with times.

Categorías

Más información sobre Time Series en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by