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 :: python concatenation 
Python :: dask read csv 
Python :: delete last few items from a list python 
Python :: import login required 
Python :: pie chart maptlotlib larger labels 
Python :: make_response is not defined django 
Python :: mkvirtualenv python version 
Python :: np.arange in python 
Python :: python input for competitive programming 
Python :: Genisim python 
Python :: drop column of datfame 
Python :: python call function x number of times 
Python :: download unsplash images script 
Python :: django url with string parameter 
Python :: cite pandas python 
Python :: ranking 
Python :: remove word from string in python 
Python :: json to argparse 
Python :: Python create a new png file 
Python :: Scatter plot with regression line Python 
Python :: download pdf python 
Python :: python capitalize the entire string 
Python :: csv manipulation python 
Python :: pandas value in series 
Python :: NLP text summarization with Luhn 
Python :: pafy doc 
Python :: confusion matrix 
Python :: access to specific column array numpy 
Python :: delete from list in python 
Python :: extract value from tensor pytorch 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =