Choosing Elements from a Vector.
8 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Dyuman Joshi
2023-9-17
A = [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)
%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)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!