change negative data to zero in one table in matlab
조회 수: 9 (최근 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!