PadRight

PadRight[list,n]

makes a list of length n by padding list with zeros on the right.

PadRight[list,n,x]

pads by repeating the element x.

PadRight[list,n,{x1,x2,}]

pads by cyclically repeating the elements xi.

PadRight[list,n,padding,m]

leaves a margin of m elements of padding on the left.

PadRight[list,{n1,n2,}]

makes a nested list with length ni at level i.

PadRight[list]

pads a ragged array list with zeros to make it full.

Details

  • PadRight[list,n,] always returns a list of length n, except in some special cases where padding is {}.
  • With padding {x1,x2,,xs} cyclic repetitions of the xi are effectively laid down and then the list is superimposed on top of them, with the first element of the list lying on an occurrence of x1. »
  • A margin of Round[(n-Length[list])/2] effectively centers list.
  • PadRight[list,n,list] effectively treats list as cyclic.
  • PadRight[list,n,{xlist}] can be used to repeat an individual element that is itself a list.
  • PadRight[{},n,{x1,x2,}] repeats the sequence of xi as many times as fit in a list of length n.
  • PadRight[list,{n1,n2,}] creates a full array with dimensions {n1,n2,} even if list is ragged. »
  • PadRight[list,Automatic,x] pads with x to make a full array.
  • Negative ni specify to pad on the left.
  • PadRight[list,{n1,n2},{{x11,x12,},{x21,},}] pads by repeating the block of xij.
  • PadRight[list,{n1,n2,},list] effectively treats list as cyclic in every dimension.
  • PadRight[list,{n1,n2,},padding,{m1,m2,}] uses margin mi at level i.
  • The object list need not have head List.
  • PadRight can be used on SparseArray objects.

Examples

open allclose all

Basic Examples  (6)

Pad with 0 to make the list be of length 10:

Pad with x:

Pad by repeating {x,y,z}:

Leave margin 2 on the left:

Pad to make a 3×4 array:

Pad to make a full array:

Scope  (3)

Negative length specifications pad on the left:

Lay down repetitions of the padding, then superimpose the original array:

Use different margins for rows and columns:

Generalizations & Extensions  (1)

Use a head other than List:

Applications  (2)

Put a 1 at the center of a list of 0s:

Lay out an array of tiles:

Properties & Relations  (1)

PadLeft[list,n] and PadRight[list,n] pad to make a list of length n:

ArrayPad[list,n] pads with n additional elements on each side:

Possible Issues  (1)

Pad with an element that is itself a list:

Wolfram Research (1999), PadRight, Wolfram Language function, https://reference.wolfram.com/language/ref/PadRight.html (updated 2007).

Text

Wolfram Research (1999), PadRight, Wolfram Language function, https://reference.wolfram.com/language/ref/PadRight.html (updated 2007).

CMS

Wolfram Language. 1999. "PadRight." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2007. https://reference.wolfram.com/language/ref/PadRight.html.

APA

Wolfram Language. (1999). PadRight. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/PadRight.html

BibTeX

@misc{reference.wolfram_2023_padright, author="Wolfram Research", title="{PadRight}", year="2007", howpublished="\url{https://reference.wolfram.com/language/ref/PadRight.html}", note=[Accessed: 18-March-2024 ]}

BibLaTeX

@online{reference.wolfram_2023_padright, organization={Wolfram Research}, title={PadRight}, year={2007}, url={https://reference.wolfram.com/language/ref/PadRight.html}, note=[Accessed: 18-March-2024 ]}