Clear Filters
Clear Filters

odd number ,even number

15 views (last 30 days)
Hamada Alkhlif
Hamada Alkhlif on 29 Apr 2021
Commented: Hamada Alkhlif on 29 Apr 2021
i need acode which detects the odd numbers in the row vector containing the digits of number (1 8 0 5 0 5 7 5 9 )in order and converts odd numbers to even numbers and displays the modified output vector

Answers (1)

Atsushi Ueno
Atsushi Ueno on 29 Apr 2021
This example below converts odd numbers to even numbers by adding one.
x = [1 8 0 5 0 5 7 5 9]
x = x + mod(x, 2)
x =
1 8 0 5 0 5 7 5 9
x =
2 8 0 6 0 6 8 6 10
  2 Comments
John D'Errico
John D'Errico on 29 Apr 2021
Please don't do student homework assignments for them. It does not help them. It only teaches them this site is here to do thier homework for them.
Hamada Alkhlif
Hamada Alkhlif on 29 Apr 2021
i am using this site for my own studies , thanks for your advice .

Sign in to comment.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!