Skip to content
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

using RowEchelon_with_pivots #10

Open
carlomontec opened this issue Jul 11, 2018 · 3 comments
Open

using RowEchelon_with_pivots #10

carlomontec opened this issue Jul 11, 2018 · 3 comments

Comments

@carlomontec
Copy link

How can I call RowEchelon_with_pivots() ?
by typing "using RowEchelon" seems it's not sufficient to access this function.

@blegat
Copy link
Owner

blegat commented Jul 11, 2018

The name is rref_with_pivots. You can do ?rref_with_pivots in the REPL to get the doc

@carlomontec
Copy link
Author

carlomontec commented Jul 11, 2018

I did try that but it is not available. If I download the code and include the source code of the module, then it works fine. But installing it from the official repository seems to not work.

  _       _ _(_)_     |  A fresh approach to technical computing
  (_)     | (_) (_)    |  Documentation: https://docs.julialang.org
   _ _   _| |_  __ _   |  Type "?help" for help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 0.6.2 (2017-12-13 18:08 UTC)
 _/ |\__'_|_|_|\__'_|  |  Official http://julialang.org/ release
|__/                   |  x86_64-pc-linux-gnu

julia> using RowEchelon

julia> rref

rref  rref!
julia> rref

rref  rref!
help?> rref_with_pivots
search:

Couldn't find rref_with_pivots
Perhaps you meant print_with_color
  No documentation found.

  Binding rref_with_pivots does not exist.

julia> using RowEchelon

julia> Pkg.test("RowEchelon")
INFO: Testing RowEchelon
Test Summary:                             | Pass  Total
Matrices of integers (treated as Float64) |   10     10
Test Summary:         | Pass  Total
Matrices of rationals |   10     10
Test Summary:             | Pass  Total
Matrix of Complex numbers |    4      4
INFO: RowEchelon tests passed

help?> rref_with_pivots
search:

Couldn't find rref_with_pivots
Perhaps you meant print_with_color
  No documentation found.

  Binding rref_with_pivots does not exist.

julia> versioninfo()
Julia Version 0.6.2
Commit d386e40c17 (2017-12-13 18:08 UTC)
Platform Info:
  OS: Linux (x86_64-pc-linux-gnu)
  CPU: Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz
  WORD_SIZE: 64
  BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell)
  LAPACK: libopenblas64_
  LIBM: libopenlibm
  LLVM: libLLVM-3.9.1 (ORCJIT, skylake)

julia> 

@blegat
Copy link
Owner

blegat commented Jul 11, 2018

That's because you are using RowEchelon v0.1.0. rref_with_pivots is currently only on the master branch. You need to do Pkg.checkout("RowEchelon")
We should do a new release

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants