Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Map a function to each element of a matrix?

Is there a direct way to apply a function to each entry of a matrix and return the resulting matrix?

A = matrix([[1,2],[3,4]])
B = matrix([[j^2 for j in i] for i in A])

Not terribly hard, but it's not ideal.