I would like to create a list of arbitrary length:
{x1_, x2_, ...}
Where each of the elements of the list has the full form:
Pattern[xi, Blank[]]
This answer shows how to create a list of symbols:
{x1, x2, ...}
but I don't know how to adapt that to obtain the above.
I intend to use this list in the definition of a function as in here.
x1=1. – Kuba Aug 28 '18 at 07:37