-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
4200 by 3 matrix has "overflow error" on input #11458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
include("b222.m") was a misprint, should be include("b2ss.m") |
These is a typo in the link at http://ncsu.edu/hpc/Courses/CSC302/b2ss.html |
@gwhowell, I added backticks for you with your post, it makes it much more readable. In |
For matrices of that size, I think you should read the numbers from a file. Is it a sparse matrix in triplet format? If you add the dimensions and the number of lines in the top you can read it with
|
Probably same issue as #11449 |
I fixed the link. On Wed, May 27, 2015 at 3:36 PM, Andreas Noack [email protected]
|
Yes, there should be a 3rd entry in the final row (failed cut and paste). On Wed, May 27, 2015 at 3:37 PM, Tim Holy [email protected] wrote:
|
Hi Andreas, converting b1ss.m to b1ss.jl 7 7 15 and using did work fine (and similarly for b2ss.m and b2ss.jl) On Wed, May 27, 2015 at 3:44 PM, Andreas Noack [email protected]
|
Closing as dup of #11320. |
HI Andreas, I haven't been able to figure out how to reconstruct sparse A from lufact(A). The formula give by help(lufact) does not appear to work F[:L]F[:U] == F[:Rs] . A[F[:p], F[:q]] but julia> A = sparse(Base.SparseMatrix.CHOLMOD.Sparse("b1ss.jl")) julia> F = lufact(A) julia> F[:L]F[:U] - F[:Rs] . A[F[:p], F[:q]] Also I'd like a way to get all 3 of the following just row pivoting, just row and column pivoting -- row and column pivoting with row scaling .. In matlab or octave, these options can be acomplished by a combination of [L,U,P] = lu(a,"vector") (vector specifes that P is a permutation vector, else P would be the matrix L_U = P_A This (vector P) happens to be the option I was attempting to use. I'm willing to help on this, but am not very good at julia. Regards, The b1ss.jl file is 7 7 15 [howell@gary2 julia]$ julia --version I had also tried this with some versions of julia I downloaded a few months On Wed, May 27, 2015 at 3:44 PM, Andreas Noack [email protected]
|
There is a set of parentheses missing in the documentation. It should be The easiest way to get the extra pivoting options you are asking for is to try implement it. I can try to help with comments, but I will probably not do implement it. There are more important issues. |
Thanks, On Mon, Jul 13, 2015 at 12:33 PM, Andreas Noack [email protected]
|
Here's the file b1ss.m
the file b2ss.m is similar (but has around 4228 rows in the matrix )
too big to drag and drop .. so posted it online
http://ncsu.edu/hpc/Courses/CSC302/b2ss.html
Note,
julia>include("b222.m")
is fine in 0.3.7
0.3.7 was from
yum install julia
in fedora 19,
The 0.4.0 is today's generic linux binary (fedora 20 )
Thanks,
Gary Howell
The text was updated successfully, but these errors were encountered: