mathjs icon indicating copy to clipboard operation
mathjs copied to clipboard

Type definition missing for matrixFrom* #3115

Open Hudsxn opened this issue 2 years ago • 2 comments

Added in the typescript definitions for matrixFromRows, matrixFromColumns and matrixFromFunction, Also created a type:

MatrixStorageFormat = 'dense' | 'sparse'

And swapped out other references, and created a type for the callback function on the matrixFromFunction:

export interface MatrixFromFunctionCallback<T extends (number | BigNumber)[]> {
  (value: T): number | BigNumber
}

Hudsxn avatar Feb 01 '24 12:02 Hudsxn

@Hudsxn can you have a look at my feedback?

josdejong avatar Feb 14 '24 07:02 josdejong

Ping @Hudsxn

josdejong avatar Feb 28 '24 07:02 josdejong