You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/src/manual/linear-algebra.md
+1-7
Original file line number
Diff line number
Diff line change
@@ -138,13 +138,7 @@ julia> sB\x
138
138
-1.1086956521739126
139
139
-1.4565217391304346
140
140
```
141
-
The `\` operation here performs the linear solution. Julia's parser provides convenient dispatch
142
-
to specialized methods for the *transpose* of a matrix left-divided by a vector, or for the various combinations
143
-
of transpose operations in matrix-matrix solutions. Many of these are further specialized for certain special
144
-
matrix types. For example, `A\B` will end up calling [`Base.LinAlg.A_ldiv_B!`](@ref) while `A'\B` will end up calling
145
-
[`Base.LinAlg.Ac_ldiv_B`](@ref), even though we used the same left-division operator. This works for matrices too: `A.'\B.'`
146
-
would call [`Base.LinAlg.At_ldiv_Bt`](@ref). The left-division operator is pretty powerful and it's easy to write compact,
147
-
readable code that is flexible enough to solve all sorts of systems of linear equations.
141
+
The `\` operation here performs the linear solution. The left-division operator is pretty powerful and it's easy to write compact, readable code that is flexible enough to solve all sorts of systems of linear equations.
0 commit comments