how to re-insert elements into a vector

1 visualización (últimos 30 días)
Sehoon Chang
Sehoon Chang el 10 de Abr. de 2020
Comentada: Sehoon Chang el 12 de Abr. de 2020
I have outliers at the X-axis position 5785 and 7934.
outliers = 5785; 7934
In order to replace the outlying value, outliers are above mentioned points are deleted and a new 'corrected' values are created.
W(outliers) = []
x = 1:17280 % indices for x asix
x(outliers) = [] % deleting / emptying the value at the outlier position on x-axis
W_int = interp1(x',W, outliers)
How may i inserted the corrected value back in to the previously deleted position?

Respuesta aceptada

Tommy
Tommy el 11 de Abr. de 2020
How about simply
W = filloutliers(W, 'linear');
If you want to supply the outliers yourself:
outliers = [5785; 7934];
x = 1:numel(W);
W = filloutliers(W, 'linear', 'OutlierLocations', any(x==outliers)');
  1 comentario
Sehoon Chang
Sehoon Chang el 12 de Abr. de 2020
thanks alot! you've provided me with a better answer that i was awaiting for

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by