Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

copy array along axis numpy

a = np.array([[1, 2], [1, 2]])

# indexing with np.newaxis inserts a new 3rd dimension, which we then repeat the
# array along, (you can achieve the same effect by indexing with None, see below)
b = np.repeat(a[:, :, np.newaxis], 3, axis=2)

print(b[:, :, 2])
# [[1 2]
#  [1 2]]
Comment

PREVIOUS NEXT
Code Example
Python :: python trace table 
Python :: remove str to set in python 
Python :: Adding a new column in pandas dataframe from another dataframe with different index 
Python :: local time in python 
Python :: pandas switch column levels 
Python :: filter in python 
Python :: python using secrets 
Python :: python redis delete many 
Python :: sqlite query using string as parameter in python 
Python :: declaring array size python 
Python :: get first digit of number 
Python :: use argparse to call function and use argument in function 
Python :: discord.py create button 
Python :: how to write a function in python 
Python :: python initialize multidimensional array 
Python :: while loop with if else 
Python :: desktop notifier in python 
Python :: unicode error python 
Python :: python loop to a tuple 
Python :: check package is installed by conda or pip environment 
Python :: pandas get rows which are NOT in other dataframe 
Python :: python get all combinations of n numbers 
Python :: import from parent directory python 
Python :: check if text is python 
Python :: is there a null data type in python 
Python :: python escape forward slash 
Python :: purpose of migration folder in django 
Python :: Accessing of Tuples in python 
Python :: how to find the last occurrence of a character in a string in python 
Python :: time converting module 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =