Matrix consisting of sub-elements of another matrix

조회 수: 1 (최근 30일)
Articat
Articat 2020년 2월 18일
댓글: Articat 2020년 2월 18일
Say I have the following matrix:
x = [ 1 2 3 4 5 6 7 8 9]
If I want a matrix that consists of the following:
y = [1 2 4 5 9]
How would I go about doing this?

채택된 답변

Matt J
Matt J 2020년 2월 18일
편집: Matt J 2020년 2월 18일
By indexing,e.g.,
>> x = [ 1 2 3 4 5 6 7 8 9]*10;
>> y=x([1,2,4,5,9])
y =
10 20 40 50 90
  댓글 수: 3
Matt J
Matt J 2020년 2월 18일
There are lots of indexing techniques described at the link I gave you. For example, you can get every 3rd element with this syntax,
x=rand(1,137);
y=x(1:3:end);
You can also get all elements satisfying some condition with logical indexing, e.g.,
y=x(x>0.5);
Articat
Articat 2020년 2월 18일
Checked out the link, was very helpful! thanks for your time

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by