未在Julia中定义的RREF

时间:2020-05-29 11:52:35

标签: julia linear-algebra

我只安装了Julia和LinearAlgebra软件包。

当我输入

A = [1 2 3 4; 4 5 6 7]
rref(A)

我的终端说

ERROR: UndefVarError: rref not defined
Stacktrace:
 [1] top-level scope at REPL[22]:1

我有点困惑。我需要安装某些软件包才能使用珊瑚礁功能吗?

1 个答案:

答案 0 :(得分:3)

LinearAlgebra软件包中没有这样的功能。过去很久以前,但此后已移至https://github.com/blegat/RowEchelon.jl

相关问题