How To Install libnewmat10ldbl on Kali Linux
Introduction
In this tutorial we learn how to install libnewmat10ldbl on Kali Linux.
What is libnewmat10ldbl
libnewmat10ldbl is:
Newmat library is intended for scientists and engineers who need to manipulate a variety of types of matrices using standard matrix operations. Emphasis is on the kind of operations needed in statistical calculations such as least squares, linear equation solve and eigenvalues.
Newmat supports matrix types: Matrix (rectangular matrix); UpperTriangularMatrix; LowerTriangularMatrix; DiagonalMatrix; SymmetricMatrix; BandMatrix; UpperBandMatrix; LowerBandMatrix; SymmetricBandMatrix; IdentityMatrix; RowVector; ColumnVector.
Only one element type (float or double) is supported (default is double).
The library includes the operations *, +, -, *=, +=, -=, Kronecker product, Schur product, concatenation, inverse, transpose, conversion between types, submatrix, determinant, Cholesky decomposition, QR triangularisation, singular value decomposition, eigenvalues of a symmetric matrix, sorting, fast Fourier and trig. transforms and printing.
There are three methods to install libnewmat10ldbl on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libnewmat10ldbl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libnewmat10ldbl using apt-get by running the following command:
sudo apt-get -y install libnewmat10ldblInstall libnewmat10ldbl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libnewmat10ldbl using apt by running the following command:
sudo apt -y install libnewmat10ldblInstall libnewmat10ldbl Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install libnewmat10ldbl using aptitude by running the following command:
sudo aptitude -y install libnewmat10ldblHow To Uninstall libnewmat10ldbl on Kali Linux
To uninstall only the libnewmat10ldbl package we can use the following command:
sudo apt-get remove libnewmat10ldblUninstall libnewmat10ldbl And Its Dependencies
To uninstall libnewmat10ldbl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libnewmat10ldblRemove libnewmat10ldbl Configurations and Data
To remove libnewmat10ldbl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libnewmat10ldblRemove libnewmat10ldbl configuration, data, and all of its dependencies
We can use the following command to remove libnewmat10ldbl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libnewmat10ldblDependencies
libnewmat10ldbl have the following dependencies:
References
Summary
In this tutorial we learn how to install libnewmat10ldbl package on Kali Linux using different package management tools: apt, apt-get and aptitude.