필터 지우기
필터 지우기

Replace all nan values in a UITable with 0

조회 수: 1 (최근 30일)
Adham Elkhouly
Adham Elkhouly 2022년 11월 29일
답변: Adham Elkhouly 2022년 11월 29일
I am trying to replace all nan values in a uitable in MATLAB App designer with zeros. I tried using
app.UITable(isnan(app.UITable)) = 0;
but it doesn't change the nan values to zero

채택된 답변

Adham Elkhouly
Adham Elkhouly 2022년 11월 29일
I used
app.UITable.Data = fillmissing(app.UITable.Data, 'constant', 0);
and all nan values were replaced by zero

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by