Home > @josh-brown/vector > MatrixEntryFunction
A function that generates a matrix entry based on an existing entry entry, its row index i, and its column index j
Signature:
export type MatrixEntryFunction<S> = (entry: S, i: number, j: number) => S;This should be a pure function