필터 지우기
필터 지우기

Choosing Elements from a Vector.

조회 수: 3 (최근 30일)
malik abdelli
malik abdelli 2023년 9월 17일
댓글: malik abdelli 2023년 9월 17일
Hello,
Lets say I have a Vector A = [0 1 2 3 4 5 6 7 8 9] , i want to choose the number 5 for example and 2 elements after that.
So my vektor B would look like this B = [5 6 7].
How can i do this?
Thank you in advance.

채택된 답변

Dyuman Joshi
Dyuman Joshi 2023년 9월 17일
Use find -
A = [0 1 2 3 4 5 6 7 8 9]
A = 1×10
0 1 2 3 4 5 6 7 8 9
%This finds all the elements in A that are equal to 5
idx = find(A==5)
idx = 6
%In case 5 appears more than once in A
%you want to find the first index, use
idx = find(A==5,1)
%Choosing the elements
B = A(idx:idx+2)
B = 1×3
5 6 7
  댓글 수: 1
malik abdelli
malik abdelli 2023년 9월 17일
Thank you that helped a lot

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by