How to Install and Uninstall perl-Math-MatrixReal.noarch Package on Fedora 34

Last updated: September 19,2024

1. Install "perl-Math-MatrixReal.noarch" package

This guide let you learn how to install perl-Math-MatrixReal.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Math-MatrixReal.noarch

2. Uninstall "perl-Math-MatrixReal.noarch" package

This guide let you learn how to uninstall perl-Math-MatrixReal.noarch on Fedora 34:

$ sudo dnf remove perl-Math-MatrixReal.noarch $ sudo dnf autoremove

3. Information about the perl-Math-MatrixReal.noarch package on Fedora 34

Last metadata expiration check: 5:45:47 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : perl-Math-MatrixReal
Version : 2.13
Release : 14.fc34
Architecture : noarch
Size : 77 k
Source : perl-Math-MatrixReal-2.13-14.fc34.src.rpm
Repository : fedora
Summary : Manipulate matrix of reals
URL : https://metacpan.org/release/Math-MatrixReal
License : GPL+ or Artistic
Description : Implements the data type "matrix of reals" (and consequently also
: "vector of reals") which can be used almost like any other basic
: Perl type thanks to OPERATOR OVERLOADING, i.e.,
:
: $A = $matrix1 * $matrix2;
: $B = $A ** 2;
: $C = $A + 2*B;
: $D = $C - $B/2;
: $inverse = $C ** -1;
: $inverse = 1/$C;
:
: does what you would like it to do.