मैं जानना चाहता हूं कि मैं शून्य संस्करण के साथ एक 2 डी संख्यात्मक खांचे को पैड कर सकता हूं जो कि अजगर संस्करण 2.6.6 के साथ संख्यात्मक संस्करण 1.5.0 का उपयोग कर रहा है। माफ़ करना! लेकिन ये मेरी सीमाएँ हैं। इसलिए मैं उपयोग नहीं कर सकता np.pad
। उदाहरण के लिए, मैं a
शून्य के साथ पैड करना चाहता हूं जैसे कि इसका आकार मेल खाता हो b
। कारण है कि मैं ऐसा करना चाहता हूं इसलिए मैं कर सकता हूं:
b-a
ऐसा है कि
>>> a
array([[ 1., 1., 1., 1., 1.],
[ 1., 1., 1., 1., 1.],
[ 1., 1., 1., 1., 1.]])
>>> b
array([[ 3., 3., 3., 3., 3., 3.],
[ 3., 3., 3., 3., 3., 3.],
[ 3., 3., 3., 3., 3., 3.],
[ 3., 3., 3., 3., 3., 3.]])
>>> c
array([[1, 1, 1, 1, 1, 0],
[1, 1, 1, 1, 1, 0],
[1, 1, 1, 1, 1, 0],
[0, 0, 0, 0, 0, 0]])
एकमात्र तरीका मैं ऐसा करने के बारे में सोच सकता हूं, यह आकर्षक है, हालांकि यह बहुत बदसूरत लगता है। वहाँ एक क्लीनर समाधान संभवतः का उपयोग कर रहा है b.shape
?
संपादित करें, MSeiferts जवाब के लिए धन्यवाद। मुझे इसे थोड़ा साफ करना पड़ा, और यही मुझे मिला:
def pad(array, reference_shape, offsets):
"""
array: Array to be padded
reference_shape: tuple of size of ndarray to create
offsets: list of offsets (number of elements must be equal to the dimension of the array)
will throw a ValueError if offsets is too big and the reference_shape cannot handle the offsets
"""
# Create an array of zeros with the reference shape
result = np.zeros(reference_shape)
# Create a list of slices from offset to offset + shape in each dimension
insertHere = [slice(offsets[dim], offsets[dim] + array.shape[dim]) for dim in range(array.ndim)]
# Insert the array in the result at the specified offsets
result[insertHere] = array
return result
padded = np.zeros(b.shape)
padded[tuple(slice(0,n) for n in a.shape)] = a