append arrays code example

Example 1: append value to numpy array

x = np.random.randint(2, size=10)
x = np.append(x, 2)

Example 2: np array append

>>> import numpy as np
>>> np.append([[0, 1, 2], [3, 4, 5]],[[6, 7, 8]], axis=0)
array([[0, 1, 2],
       [3, 4, 5],
       [6, 7, 8]])

Example 3: how to append to an array

// initialize array
var arr = [
  "Hi",
  "Hello",
  "Bonjour"
];

// append new value to the array
arr.push("Hola");

console.log(arr);

Example 4: append vector to vector python

Xa = ['a1','a2','a3']
Xb = ['b1','b2','b3']
Xc = ['c1','b2','b3']

resultArray = []
resultArray.append(Xa)
resultArray.append(Xb)
resultArray.append(Xc)

Tags:

Java Example