Combining two arrays using a seconds order
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Fatih
el 18 de Feb. de 2024
Comentada: Fatih
el 20 de Feb. de 2024
I have two arrays.
number = [8 9 4 1 2 3 6 7 10 5]
number2 = [5 1 6 7 3 4 10 9 8 2]
I would like to replace the first 5 values of number (8 9 4 1 2)
with the same order for these values in number2 (1 4 9 8 2). So the revised number will be [1 4 9 8 2 3 6 7 10 5] as the next five numbers will not change.
Thanks in advance
2 comentarios
Rik
el 18 de Feb. de 2024
Should it only be the first 5 values?
You can use the ismember function to do this. What have you tried so far?
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!