Change values in vectors
5 次查看(过去 30 天)
显示 更早的评论
I have a vector like: V=[1,2,3,4,5,6] and I want to substitute any values above 3 with the previous value in the vector which is “2”. So I want to have V=[1,2,2,2,2,2]. How to do this? Thank you.
0 个评论
回答(2 个)
Sulaymon Eshkabilov
2023-1-21
编辑:Sulaymon Eshkabilov
2023-1-21
V=[1,2,3,4,5,6]
IDX = find(V>3);
V(IDX)=2
%% ALT. Way:
V=[1,2,3,4,5,6]
V(V>3)=2
0 个评论
Vilém Frynta
2023-1-21
If you want to apply it to this vector, it's not complicated. But if you wanted to apply it to a more complex vector where the numbers don't go in ascending order, it woudle be bit more complicated.
I almost did it for you, but then I realized this sounds like a homework.
Please try, then we may help you. Try using find and indexing.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!