# Function ones Create a matrix filled with ones. The created matrix can have one or multiple dimensions. ## Syntax ```js math.ones(m) math.ones(m, n) math.ones([m, n]) math.ones([m, n, p, ...]) ``` ### Parameters Parameter | Type | Description --------- | ---- | ----------- `size` | ...Number | Array | The size of each dimension of the matrix ### Returns Type | Description ---- | ----------- Array | Matrix | Number | A matrix filled with ones ## Examples ```js math.ones(3); // returns [1, 1, 1] math.ones(3, 2); // returns [[1, 1], [1, 1], [1, 1]] var A = [[1, 2, 3], [4, 5, 6]]; math.zeros(math.size(A)); // returns [[1, 1, 1], [1, 1, 1]] ``` ## See also [zeros](zeros.md), [eye](eye.md), [size](size.md), [range](range.md)