UNPKG

@duetds/date-picker

Version:

Duet Date Picker is an open source version of Duet Design System’s accessible date picker.

15 lines (14 loc) 461 B
import { Matrix } from '../../types'; /** * Create a matrix with each cell with the value of `num` * * @method numbers * @param {Number} height - The number of rows * @param {Number} width - The number of columns * @param {Number} num - The value to set on each cell * @returns {Matrix} B - An n-by-m matrix of `num` * @private * @memberOf matlab * @since 0.0.2 */ export declare function numbers(height: number, width: number, num: number): Matrix;