Previous Up Next

5.51.11  Image of a linear function: image

image takes as argument the matrix of a linear function f with respect to the canonical basis.
image returns a list of vectors that is a basis of the image of f.
Input:

image([[1,1,2],[2,1,3],[3,1,4]])

Output:

[[-1,0,1],[0,-1,-2]]

Previous Up Next