Remove some zeros from a cell

1 回表示 (過去 30 日間)
Louise
Louise 2021 年 1 月 27 日
回答済み: Mathieu NOE 2021 年 1 月 27 日
Hi,
My aim is to remove all 0 for each columns of this attached cell.
I have actually no idea on how to do that...
Thanks in advance for you help !
Louise

採用された回答

Mathieu NOE
Mathieu NOE 2021 年 1 月 27 日
hello
simple code below , replace zeros with NaN (example)
load('Cell.mat')
dd = cell2mat(Data_All_Repos);
dd(dd<eps) = NaN ; % more obust than dd(dd==0) = NaN

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by