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

Last updated: May 03,2024

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

Please follow the guidelines below to install perl-Math-MatrixReal.noarch on Fedora 36

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

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

Please follow the instructions below to uninstall perl-Math-MatrixReal.noarch on Fedora 36:

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

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

Last metadata expiration check: 5:29:43 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : perl-Math-MatrixReal
Version : 2.13
Release : 17.fc36
Architecture : noarch
Size : 76 k
Source : perl-Math-MatrixReal-2.13-17.fc36.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.