Replace rows in one array with values from another column

조회 수: 6 (최근 30일)
Aleya Marzuki
Aleya Marzuki 2019년 8월 14일
답변: madhan ravi 2019년 8월 14일
I have a long column with integers. In any 24 of the rows, there are number 5s. For example [354, 693, 5, 1289, 1890, 3456, 5 .... etc]
In a separate array, I have a list of numbers [1-4] in 24 rows, e.g. [1, 2, 2, 4, 1, 1, 3, 4, ...] until the 24th row.
How would I be able to replace the number 5s in the long array with the numbers from the 24-row array? The end output would be [354, 693, 1, 1289, 1890, 3456, 2 .... etc]
I've tried double for-loops but they don't work well (and there's definitely a way to do this without a loop that I'm just not aware of).
Thank you!

채택된 답변

madhan ravi
madhan ravi 2019년 8월 14일
v1(v1==5)=v2 % where v1 is array with 5s

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by