Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

np.concatenate

>>> a = np.array([[1, 2], [3, 4]])
>>> b = np.array([[5, 6]])
>>> np.concatenate((a, b), axis=0)
array([[1, 2],
       [3, 4],
       [5, 6]])
>>> np.concatenate((a, b.T), axis=1)
array([[1, 2, 5],
       [3, 4, 6]])
>>> np.concatenate((a, b), axis=None)
array([1, 2, 3, 4, 5, 6])
Comment

numpy concatenation array

#// required library
import numpy as npy

#// define 3 (1D) numpy arrays
arr1 = npy.array([10, 20, 30])
arr2 = npy.array([40, 50, 60])
arr3 = npy.array([70, 80, 90])

arrCon = npy.concatenate([arr1, arr2, arr3])
print(arrCon)

#// concatenation can also happen with 2D arrays
arr1_2d = npy.array([
  [10, 20, 30],
  [40, 50, 60]
])
arr2_2d = npy.array([
  [11, 22, 33],
  [44, 55, 66]
])

arr_2dCon = npy.concatenate([arr1_2d, arr2_2d])
print(arr_2dCon)
Comment

NumPy Concatenate Arrays

# Example 1: Use concatenate() to join two arrays
con = np.concatenate((arr, arr1))
print(con)

# Example 2: Use concatenate() with axis
con = np.concatenate((arr, arr1), axis=1)
print(con)

# Example 3: Use np.stack() function to Join Arrays
con = np.stack((arr, arr1), axis=1)
print(con)

# Example 4: Use np.hstack() function
con = np.hstack((arr, arr1))
print(con)

# Example 5: Use np.vstack() function 
con = np.vstack((arr, arr1))
print(con)

# Example 6: Use np.dstack() function to Stacking Along Height (depth)
con = np.dstack((arr, arr1))
print(con)
Comment

concatenate strings of numpy array python

a=np.array(['ab','cd','ef','gh'])
''.join(a)

#Output: 'abcdefgh'
Comment

np.concatenate

numpy.concatenate((a1, a2, ...), axis)
Comment

Python NumPy concatenate Function Syntax

numpy.concatenate((arr1, arr2, …), axis=0, out=None)
Comment

PREVIOUS NEXT
Code Example
Python :: np.exp in python numpy 
Python :: df split into train, validation, test 
Python :: format dictionary python 
Python :: If elif else 
Python :: flask get uploaded file size 
Python :: python program to find the sum of fibonacci series 
Python :: How do I stop Selenium from closing my browser 
Python :: how to add list numbers in python 
Python :: input for competitive programming 
Python :: word2vec 
Python :: pandas: split string, and count values? 
Python :: python redirect with button click 
Python :: download unsplash images code 
Python :: return mean of df as dataframe 
Python :: reportlab python add font style 
Python :: python if true 
Python :: python convert list to list of strings 
Python :: wifite2 
Python :: python slicing 
Python :: python towers of hanoi recursive 
Python :: Set value of dataframe using condition 
Python :: python lambda key sort 
Python :: repr() in python 
Python :: calculate quantiles python 
Python :: add icon to exe file 
Python :: trim string to max length python 
Python :: seaborn 
Python :: ImportError: cannot import name include 
Python :: how to change datetime format to mmyy in dataframe 
Python :: add timestamp csv python 
ADD CONTENT
Topic
Content
Source link
Name
8+6 =