how to append 1 array with half the elements of second array?

2 visualizzazioni (ultimi 30 giorni)
I have 2 arrays Arr1=[2 3 4 5] and arr2=[6 7 8 9 10 12] with C=number of elements in arr2 (here, it is 6). So, I want to append array1 with half the elements of array2 e.g arr1=arr1+arr2[C/2]?

Risposta accettata

Walter Roberson
Walter Roberson il 6 Set 2015
arr1 = [arr1, arr2(1:end/2)]

Più risposte (0)

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by