v1.0.0
StaticArrays v1.0.0
Closed issues:
- SizedArray of SubArray isn't a view (#334)
- Performance of splatting a SVector (#361)
- Certain
SArray
*Adjoint(SArray)
producesArray{Float64,2}
instead ofSArray
(#537) - error creating empty MVector (#557)
- vcat(::SVector, ::Number) should return an SVector (#602)
- Eigendecomposition of 3x3 symmetric Float64 matrices is not very accurate (#696)
- zero-length MVector to SVector conversion fails (type info is lost) (#782)
- eachindex and SOneTo (#812)
- Uncallable method of
_mul
(#813) - Generalization of AbstractRange? (#816)
- Invalidations and new methods of similar (#821)
- Add
pointer
orparent
method forSizedArray
? (#822) - setindex! returns the wrong value (#827)
- Outer product of MVector returns SMatrix (#828)
- float(SVector) gives an MVector (#247)
- diagm on SVector gives an Array back (#834)
- vcat static arrays (#846)
- Inverse of static matrix from cholesky decomposition fails (#847)
- A / lu(A) returns Array when A is an SArray (#851)
Merged pull requests:
- Some vcat / hcat overloads for Number + StaticArray (#768) (@c42f)
- Sized AbstractArray (#783) (@mateuszbaran)
- Resolve ambiguity for
convert(::Type{<:Scalar}, ::StaticArray)
(#808) (@Liozou) - Fix nightly CI tests (#810) (@Liozou)
- Structured matrix multiplication (#814) (@mateuszbaran)
- Updated _cholesky function. (#817) (@chriselrod)
- use
SOneTo
foreachindex()
(#819) (@stev47) - Avoid type piracy in similar (#823) (@pabloferz)
- Reducing load time by restricting dest in 5-argument mul! method (#825) (@mateuszbaran)
- Add
rot180
etc. for SMatrix (#826) (@mcabbott) - Pointer method for SizedArray (#829) (@mateuszbaran)
- Making similar_type check inside array wrappers (#830) (@mateuszbaran)
- Fixing constructors from 0-element arrays (#831) (@mateuszbaran)
- Make setindex! return the array rather than the value (#832) (@c42f)
- Change order of function definition in matrix multiplication code (#833) (@mateuszbaran)
- More general division by triangular matrices (#837) (@mateuszbaran)
- overload Base.rest (#844) (@simeonschaub)
- require one-based indexing for SizedArray (#845) (@simeonschaub)
- Various fixes for
diagm
(#848) (@c42f) - Update to event-driven TagBot.yml (#850) (@c42f)
- Inverse of Cholesky decomposition (#852) (@mateuszbaran)
- Remove some old deprecations (#853) (@c42f)