Create a new vector with even numbers first.

13 ビュー (過去 30 日間)
Michael Noak
Michael Noak 2019 年 10 月 20 日
回答済み: ABHILASH SINGH 2019 年 10 月 20 日
I have a vector = [20 21 22 23 24 25 26 27 28 29]
My task is to create a new vector from the first, with the even numbers first and then the odd numbers = [20 22 24 26 28 21 23 25 26 27 28 29]
Last I have to make it the Dame way but Vice versa.

回答 (1 件)

ABHILASH SINGH
ABHILASH SINGH 2019 年 10 月 20 日
x = [20 21 22 23 24 25 26 27 28 29]
% Find indices where x is even:
evenIndices = rem(x, 2) == 0
% Extract only the even numbers into a new vector.
allTheEvenNumbers = x(evenIndices)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by