Skip to content

Commit e9d5a78

Browse files
Alexey Stukalovalyst
authored andcommitted
fix typo
1 parent 4af119e commit e9d5a78

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/loss/WLS/WLS.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ Weighted least squares estimation.
1010
1111
SemWLS(;
1212
observed,
13-
meanstructure = false,
14-
wls_weight_matrix = nothing,
15-
wls_weight_matrix_mean = nothing,
16-
approximate_hessian = false,
13+
meanstructure = false,
14+
wls_weight_matrix = nothing,
15+
wls_weight_matrix_mean = nothing,
16+
approximate_hessian = false,
1717
kwargs...)
1818
1919
# Arguments
2020
- `observed`: the `SemObserved` part of the model
2121
- `meanstructure::Bool`: does the model have a meanstructure?
2222
- `approximate_hessian::Bool`: should the hessian be swapped for an approximation
23-
- `wls_weight_matrix`: the weight matrix for weighted least squares.
24-
Defaults to GLS estimation (``0.5*(D^T*kron(S,S)*D)`` where D is the duplication matrix
25-
and S is the inverse ob the observed covariance matrix)
26-
- `wls_weight_matrix_mean`: the weight matrix for the mean part of weighted least squares.
23+
- `wls_weight_matrix`: the weight matrix for weighted least squares.
24+
Defaults to GLS estimation (``0.5*(D^T*kron(S,S)*D)`` where D is the duplication matrix
25+
and S is the inverse of the observed covariance matrix)
26+
- `wls_weight_matrix_mean`: the weight matrix for the mean part of weighted least squares.
2727
Defaults to GLS estimation (the inverse of the observed covariance matrix)
2828
2929
# Examples

0 commit comments

Comments
 (0)