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 python

#// 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

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 :: all alphabets 
Python :: sklearn rmse 
Python :: sns legend outside 
Python :: hide password input tkinter 
Python :: pandas object to float 
Python :: qlabel alignment center python 
Python :: django models distinct 
Python :: Parameter Grid python 
Python :: python basename 
Python :: panda datetime ymd to dmy 
Python :: play wav files python 
Python :: dataframe delete row 
Python :: flask debug 
Python :: creata daframe python 
Python :: python turtle shooting game 
Python :: tkinter refresh window 
Python :: my pygame window wont stay open 
Python :: TypeError: dict is not a sequence 
Python :: does break stop all loops 
Python :: binomial coefficient python 
Python :: how to swap tuple 
Python :: how to use selenium on default chrome python 
Python :: how to slice dataframe based on daterange in pandas 
Python :: count values in array python 
Python :: highlight max value in table pandas dataframe 
Python :: How to Add R to Jupyter Notebook 
Python :: take input in 2d list in python 
Python :: seaborn heatmap parameters 
Python :: python datetime add one week 
Python :: python get system information 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =