np array empty code example

Example 1: numpy empty array

import numpy as np

n = 2
X = np.empty(shape=[0, n])

for i in range(5):
    for j  in range(2):
        X = np.append(X, [[i, j]], axis=0)

print X

Example 2: declare empty array of complex type python

numpy.empty(shape, dtype=float, order='C')

Example 3: numpy create empty array

>>> np.empty([2, 2])
array([[ -9.74499359e+001,   6.69583040e-309],
       [  2.13182611e-314,   3.06959433e-309]])         #uninitialized

Example 4: create empty numpy array

>>> np.empty([2, 2])
#Output:
array([[ -9.74499359e+001,   6.69583040e-309],
       [  2.13182611e-314,   3.06959433e-309]])

Example 5: create empty numpy array without shape

a = []
    for x in y:
        a.append(x)
    a = np.array(a)

Tags:

Misc Example