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!