ฉันต้องการทราบว่าฉันสามารถวางอาร์เรย์ตัวเลข 2D ด้วยศูนย์โดยใช้ python 2.6.6 กับ numpy เวอร์ชัน 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