Skip to content

Commit

Permalink
Merge pull request #750 from carlobaldassi/linalg
Browse files Browse the repository at this point in the history
Reorganization of linalg.jl in separate files
  • Loading branch information
JeffBezanson committed Apr 24, 2012
2 parents 9135075 + 022d924 commit bfd7bcc
Show file tree
Hide file tree
Showing 10 changed files with 823 additions and 600 deletions.
494 changes: 61 additions & 433 deletions base/linalg.jl

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion base/linalg_blas.jl
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ function (*){T<:Union(Float64,Float32,Complex128,Complex64)}(A::StridedMatrix{T}
if nA != mX; error("*: argument shapes do not match"); end

if stride(A, 1) != 1
return invoke(*, (AbstractMatrix, AbstractVector), A, X)
return invoke(*, (Matrix, Vector), A, X)
end

# Result array does not need to be initialized as long as beta==0
Expand Down
Loading

0 comments on commit bfd7bcc

Please sign in to comment.