Releases: JuliaArrays/StaticArrays.jl
StaticArrays 0.7.0
This update includes bugfixes, some more specializations of LinAlg
functions on StaticArray
s (such as lu
) and improved (not perfect) support for Julia v0.7.
v0.6.6
Merge pull request #338 from JuliaArrays/sd/extrema fix extrema
StaticArrays 0.6.5
StaticArrays v0.6.4
StaticArrays v0.6.3
- This release contains many internal improvements, bug fixes and tackles several broadcast issues.
- The code was modernised with Julia 1.0 in sight (this task is not yet completed.)
- The documentation now uses Documenter.jl.
- Test coverage was substantially improved.
StaticArrays v0.6.2
Fix typo in test
StaticArrays v0.6.1
logdet
specializationlyap
specialization
v0.6.0
-
- tests + bug fixes
- make matprod inference consistent with Base
- Improve support for triangular matrices
- Implement diag() with Val as second argument (#226)
- Couple missing branches for sqrtm and solve (#227)
- Static wrappers for svdvals(), svd() and svdfact()
- LU decomposition via Base
- Fix det() return type for dimension N >= 4
- faster + better matrix inverse ( returns SMatrix up to 4x4)
- Integrate StaticArrays with julia 0.6 broadcast
- Porting SDiagonal from Bridge.jl
StaticArrays v0.5.1
read
,write
andread!
support.expm
andsqrtm
supports static matrices, with fast 1x1 and 2x2 algorithms.solve
now is faster for triangular static matrices.- Many bug fixes.
- Many more unit tests - special thank you to @kshyatt!
StaticArrays 0.5.0
This is a julia-0.6- only release.
This is a breaking release because the type parameters to StaticArray
, StaticVector
, StaticMatrix
, SArray
and MArray
changed (though not SVector
, SMatrix
, MVector
, or MMatrix
) - you will need to update your code if you name any of these types explicitly.
Breaking changes
-
Unify types so that
SVector
andSMatrix
are aliases for 1D and 2D
SArray
. To make this work, the SArray size parameter must now be passed
as a Tuple type rather than tuple instance (#127). -
Add size information to the base
StaticArray
type and type aliases, so
that, for example,StaticMatrix{2,2,T}
can be used for directly
dispatching on 2x2 matrices, without messing with the Size trait (#134)
Feature additions and fixes
- Fixes for additional fancy linear indexing (#128)
- Return
SVector
from some mixed static/abstract array operations (#131, #140) - Bring back StaticArrays.FixedSizeArrays for julia-0.6 (#138)