How to delete multiple of the Value in Array
조회 수: 6 (최근 30일)
이전 댓글 표시
Hello, I have the following array I want to delete the values, which are multiple of any values
How can i do that in MATLAB
댓글 수: 1
Rik
2022년 12월 29일
Why did you post a duplicate question instead of responding that this isn't what you wanted?
채택된 답변
C B
2022년 12월 20일
A = [1 2 3 4 5 6 7 8 9 10] % Initial array
A(mod(A,3) == 0) = [] % Delete elements that are multiples of 3
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!