필터 지우기
필터 지우기

I have 135987 * 69 table. I want to convert all negative values to NaN. Any Suggestions?

조회 수: 6 (최근 30일)
I have 135987 * 69 table. I want to convert all negative values to NaN. Any Suggestions?

답변 (1개)

Guillaume
Guillaume 2018년 7월 9일
tablecontent = yourtable{:, :};
tablecontent(tablecontent < 0) = NaN;
yourtable{:, :} = tablecontent;
This assumes that every variable in the table is numeric and scalar.

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by