フィルターのクリア

How to work with arrays with values of Log(0)?

14 ビュー (過去 30 日間)
Jacinto Elias Sedeño-Díaz
Jacinto Elias Sedeño-Díaz 2020 年 12 月 8 日
回答済み: David Hill 2020 年 12 月 8 日
I am working with arrays that include zero values. One transformation I must do is apply logarithms to each value in the matrix. In the result, I need to do other operations but I have to skip the values that do not have a result of the logarithm. How can I do that?
Thanks

回答 (1 件)

David Hill
David Hill 2020 年 12 月 8 日
a=log(initialArray);
idx=initialArray~=0;
a(idx)=5*a(idx);%other calculations only perform on non-zero values of initial array

カテゴリ

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

タグ

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by