Skip to content

Commit 4b526a0

Browse files
committed
add Random to doc deps
1 parent 895ad81 commit 4b526a0

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

docs/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
4+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
45
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
56
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
67

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ end
66

77
# Introduction
88

9-
`FillArrays` allows one to lazily represent arrays filled with a single entry, as well as identity matrices. This package exports the following types: `Eye`, `Fill`, `Ones`, `Zeros`, `Trues` and `Falses`. Among these, the [`FillArrays.AbstractFill`](@ref) types represent lazy versions of dense arrays where all elements have the same value. `Eye`, on the other hand, represents a `Diagonal` matrix with ones along the principal diagonal. All these types accept sizes or axes as arguments, so one may create arrays of arbitrary sizes and dimensions. A rectangular `Eye` matrix may be created analogously by passing the size along each axis to `Eye`.
9+
`FillArrays` allows one to lazily represent arrays filled with a single entry, as well as identity matrices. This package exports the following types: `Eye`, `Fill`, `Ones`, `Zeros`, `Trues` and `Falses`. Among these, the [`FillArrays.AbstractFill`](@ref) types represent lazy versions of dense arrays where all elements have the same value. `Eye`, on the other hand, represents a `Diagonal` matrix with ones along the principal diagonal. All these types accept sizes or axes as arguments, so one may create arrays of arbitrary sizes and dimensions. A rectangular `Eye` matrix may be constructed analogously, by passing the size of the matrix to `Eye`.
1010

1111
## Quick Start
1212

0 commit comments

Comments
 (0)