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

Last updated: January 12,2025

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

In this section, we are going to explain the necessary steps to install perl-Math-MatrixReal.noarch on Fedora 39

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

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

Please follow the guidelines below to uninstall perl-Math-MatrixReal.noarch on Fedora 39:

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

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

Last metadata expiration check: 1:15:48 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : perl-Math-MatrixReal
Version : 2.13
Release : 21.fc39
Architecture : noarch
Size : 75 k
Source : perl-Math-MatrixReal-2.13-21.fc39.src.rpm
Repository : fedora
Summary : Manipulate matrix of reals
URL : https://metacpan.org/release/Math-MatrixReal
License : GPL-1.0-or-later OR Artistic-1.0-Perl
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.