change negative data to zero in one table in matlab
10 ビュー (過去 30 日間)
古いコメントを表示
Hello,
so i have table with negative values and also with some values above zero but very small, for example: 0.00001 and i want these values to be zero in the table,
can i make some kind of a code or what?
thanks in advance
1 件のコメント
Dyuman Joshi
2023 年 11 月 27 日
移動済み: Dyuman Joshi
2023 年 11 月 27 日
Find Array Elements That Meet your Condition and assign them to be 0.
採用された回答
chicken vector
2023 年 11 月 27 日
編集済み: chicken vector
2023 年 11 月 27 日
% Create fictitious set of data:
tableData = rand(1e1) - .5
% Define tolerance under which data is set to zero:
tol = 1e-2;
% Udpate table:
tableData(tableData<=tol) = 0
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!