odd number ,even number

조회 수: 8 (최근 30일)
Hamada Alkhlif
Hamada Alkhlif 2021년 4월 29일
댓글: Hamada Alkhlif 2021년 4월 29일
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

답변 (1개)

Atsushi Ueno
Atsushi Ueno 2021년 4월 29일
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
John D'Errico
John D'Errico 2021년 4월 29일
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 2021년 4월 29일
i am using this site for my own studies , thanks for your advice .

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by