Remove all infinite values from ydata and then remove those same indices from the xdata so the vectors remain the same length

14 vues (au cours des 30 derniers jours)
Any recommendations to remove all infinite values from ydata and then remove those same indices from the xdata so the vectors remain the same length? I have removed the infinite values from the ydata and then outputed the indices that are finite, but I am unsure how to easily extract these same indices from the xdata. Thank you

Réponses (1)

James Tursa
James Tursa le 7 Jan 2020
Modifié(e) : James Tursa le 7 Jan 2020
x = isinf(ydata);
ydata(x) = [];
xdata(x) = [];
Or, if you need to extract the values into new variables,
x = ~isinf(ydata);
ydata_new = ydata(x);
xdata_new = xdata(x);

Catégories

En savoir plus sur Numeric Types dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by