File tree 5 files changed +0
-18
lines changed
5 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,6 @@ New library features
114
114
inserting or consuming the first dimension depending on the ratio of ` sizeof(T) ` and ` sizeof(S) ` .
115
115
* New ` append!(vector, collections...) ` and ` prepend!(vector, collections...) ` methods accept multiple
116
116
collections to be appended or prepended ([ #36227 ] ).
117
- * The postfix operator ` 'ᵀ ` can now be used as an alias for ` transpose ` ([ #38062 ] ).
118
117
* ` keys(io::IO) ` has been added, which returns all keys of ` io ` if ` io ` is an ` IOContext ` and an empty
119
118
` Base.KeySet ` otherwise ([ #37753 ] ).
120
119
* ` count ` now accepts an optional ` init ` argument to control the accumulation type ([ #37461 ] ).
Original file line number Diff line number Diff line change @@ -467,7 +467,6 @@ export
467
467
# linear algebra
468
468
var"'" , # to enable syntax a' for adjoint
469
469
adjoint,
470
- var"'ᵀ" ,
471
470
transpose,
472
471
kron,
473
472
kron!,
Original file line number Diff line number Diff line change 567
567
function kron! end
568
568
569
569
const var"'" = adjoint
570
- const var"'ᵀ" = transpose
571
570
572
571
"""
573
572
\\ (x, y)
Original file line number Diff line number Diff line change @@ -136,7 +136,6 @@ julia> x'x
136
136
adjoint (A:: AbstractVecOrMat ) = Adjoint (A)
137
137
138
138
"""
139
- A'ᵀ
140
139
transpose(A)
141
140
142
141
Lazy transpose. Mutating the returned object should appropriately mutate `A`. Often,
@@ -146,9 +145,6 @@ that this operation is recursive.
146
145
This operation is intended for linear algebra usage - for general data manipulation see
147
146
[`permutedims`](@ref Base.permutedims), which is non-recursive.
148
147
149
- !!! compat "Julia 1.6"
150
- The postfix operator `'ᵀ` requires Julia 1.6.
151
-
152
148
# Examples
153
149
```jldoctest
154
150
julia> A = [3+2im 9+2im; 8+7im 4+6im]
@@ -160,14 +156,6 @@ julia> transpose(A)
160
156
2×2 transpose(::Matrix{Complex{Int64}}) with eltype Complex{Int64}:
161
157
3+2im 8+7im
162
158
9+2im 4+6im
163
-
164
- julia> x = [3, 4im]
165
- 2-element Vector{Complex{Int64}}:
166
- 3 + 0im
167
- 0 + 4im
168
-
169
- julia> x'ᵀx
170
- -7 + 0im
171
159
```
172
160
"""
173
161
transpose (A:: AbstractVecOrMat ) = Transpose (A)
Original file line number Diff line number Diff line change 253
253
@test ∋ (0 )(- 2 : 2 )
254
254
end
255
255
256
- a = rand (3 , 3 )
257
- @test transpose (a) === a' ᵀ
258
-
259
256
@test [Base. afoldl (+ , 1 : i... ) for i = 1 : 40 ] == [i * (i + 1 ) ÷ 2 for i = 1 : 40 ]
You can’t perform that action at this time.
0 commit comments