This question I found in internet please help me to solve this question.

16 ビュー (過去 30 日間)
sharad tiwari
sharad tiwari 2015 年 5 月 21 日
コメント済み: Jan 2017 年 6 月 7 日
Write a function called odd_index that takes a matrix, M, as input argument and returns a matrix that contains only those elements of M that are in odd rows and columns. In other words, it would return the elements of M at indices (1,1), (1,3), (1,5), …, (3,1), (3,3), (3,5), …, etc. Note that both the row and the column of an element must be odd to be included in the output. The following would not be returned: (1,2), (2,1), (2,2) because either the row or the column or both are even. As an example, if M were a 5-by-8 matrix, then the output must be 3-by-4 because the function omits rows 2 and 4 of M and it also omits columns 2, 4, 6, and 8 of M.
  1 件のコメント
James Tursa
James Tursa 2015 年 5 月 21 日
Please make an attempt and post your code. Then we can offer advice and suggestions.

サインインしてコメントする。

採用された回答

Thomas Koelen
Thomas Koelen 2015 年 5 月 21 日
I strongly feel like this is homework.. but:
function M_out = odd_index(M)
M_out = M(1:2:end, 1:2:end);
end
  3 件のコメント
James Tursa
James Tursa 2017 年 3 月 17 日
Is 2 odd?
Jan
Jan 2017 年 6 月 7 日
@soummya roy: ???

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by