Filter löschen
Filter löschen

How to remove multiple elements from an array?

19 Ansichten (letzte 30 Tage)
Steven
Steven am 18 Sep. 2013
I have an array x which is equal to [1:50].
I am trying to remove all the elements that are divisible by 3, 4, and 5.
I cannot figure this out for the life of me, I'm sure it will involve some sort of For Loop and three different mod functions.
I would greatly appreciate help from anyone!

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 19 Sep. 2013
Bearbeitet: Azzi Abdelmalek am 19 Sep. 2013
a=1:50
a(~mod(a,3)|~mod(a,4)|~mod(a,5))=[]
  1 Kommentar
Steven
Steven am 19 Sep. 2013
Thank you so much for your help. I really appreciate it!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by