@@ -4,6 +4,11 @@ struct LArray{T, N, D <: AbstractArray{T, N}, Syms} <: DenseArray{T, N}
4
4
LArray {T, N, D, Syms} (__x) where {T, N, D, Syms} = new {T, N, D, Syms} (__x)
5
5
end
6
6
7
+ function LArray {T, N, D, Syms} (:: UndefInitializer , n:: Int64 ) where {T, N, D, Syms}
8
+ @assert length (Syms) == n
9
+ LArray {T, N, D, Syms} (similar (D, n))
10
+ end
11
+
7
12
# ####################################
8
13
# NamedTuple compatibility
9
14
# ####################################
@@ -199,8 +204,8 @@ A.a == 1
199
204
```
200
205
201
206
Users can also generate a labelled array with undefined values by instead giving
202
- the dimensions. This approach is useful if the user intends to pre-allocate an
203
- array for some later input.
207
+ the dimensions. This approach is useful if the user intends to pre-allocate an
208
+ array for some later input.
204
209
205
210
```julia
206
211
A = @LArray Float64 (2,2) (:a,:b,:c,:d)
@@ -226,7 +231,7 @@ julia> z.a
226
231
4
227
232
```
228
233
229
- The labels of LArray and SLArray can be accessed
234
+ The labels of LArray and SLArray can be accessed
230
235
by function `symbols`, which returns a tuple of symbols.
231
236
"""
232
237
macro LArray (vals, syms)
@@ -260,7 +265,7 @@ A = @LVector Float64 (:a,:b,:c,:d)
260
265
A .= rand(4)
261
266
```
262
267
263
- On the other hand, users can also initialize the vector and set its values at the
268
+ On the other hand, users can also initialize the vector and set its values at the
264
269
same time:
265
270
266
271
```julia
0 commit comments