I want to create two different matrices from a single matrix.

조회 수: 1 (최근 30일)
Maruti Patil
Maruti Patil 2015년 4월 15일
댓글: Maruti Patil 2015년 4월 15일
suppose I have a column matrix
u = [2.2717e-33; -5.4589e-33; 5.2283e-33; -2.4541e-32; 4.7101e-12; -8.2867e-12; 1.2316e-12; -2.42e-11; 5.4588e-33; -6.9569e-11; -1.7921e-11; -7.563e-12; -1.8645e-11; -2.7506e-11; -1.2959e-32; -5.452e-11]; I want to create two matrices one for even numbers of rows and other for odd numbers of rows. How to do it?? Please help thanks.

채택된 답변

Guillaume
Guillaume 2015년 4월 15일
편집: Guillaume 2015년 4월 15일
It's simple indexing:
oddu = u(1:2:end)
evenu = u(2:2:end)
A more generic solution that gives you odd and even rows for matrices as well as vectors:
oddrows = m(1:2:end, :);
evenrows = m(2:2:end, :);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by