Even Numbers in a matrix a

19 views (last 30 days)
Nicholas Cappellino
Nicholas Cappellino on 31 Oct 2018
Commented: Jonas Campos on 27 May 2021
I have a matrix 1 through 20 and i need to make a new matrix b with even numbers 1 through 20

Answers (1)

madhan ravi
madhan ravi on 31 Oct 2018
Edited: madhan ravi on 31 Oct 2018
a=1:20
b=a(rem(a,2)==0)
  5 Comments
madhan ravi
madhan ravi on 31 Oct 2018
If you got the answer to your question make sure to accept the answer so people know question is solved else let know
Jonas Campos
Jonas Campos on 27 May 2021
This answer works

Sign in to comment.

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!