File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -210,15 +210,15 @@ false
210210is_orthogonal ( L:: AbstractOperator ) = false
211211
212212"""
213- `is_invertable (A::AbstractOperator)`
213+ `is_invertible (A::AbstractOperator)`
214214
215- Test whether `A` is easily invertable .
215+ Test whether `A` is easily invertible .
216216
217217```julia
218218julia> is_invertible(DFT(10))
219219true
220220
221- julia> is_invertable (MatrixOp(randn(3,4)))
221+ julia> is_invertible (MatrixOp(randn(3,4)))
222222false
223223
224224```
@@ -228,7 +228,7 @@ is_invertible( L::AbstractOperator) = false
228228"""
229229`is_full_row_rank(A::AbstractOperator)`
230230
231- Test whether `A` is easily invertable .
231+ Test whether `A` is easily invertible .
232232
233233```julia
234234julia> is_full_row_rank(MatrixOp(randn(3,4)))
@@ -243,7 +243,7 @@ is_full_row_rank( L::AbstractOperator) = false
243243"""
244244`is_full_row_rank(A::AbstractOperator)`
245245
246- Test whether `A` is easily invertable .
246+ Test whether `A` is easily invertible .
247247
248248```julia
249249julia> is_full_column_rank(MatrixOp(randn(4,3)))
You can’t perform that action at this time.
0 commit comments