Remove all infinite values from ydata and then remove those same indices from the xdata so the vectors remain the same length
조회 수: 14 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
답변 (1개)
James Tursa
2020년 1월 7일
편집: James Tursa
2020년 1월 7일
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);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Numeric Types에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!