The Joint Spectral Radius of a set of matrices characterizes the maximal asymptotic rate of growth of a product of matrices taken in this set, when the
length of the product increases.
It is known to be very hard to compute. In recent years, many different methods have been proposed to approximate it.
These methods have different advantages, depending on the application considered, the type of matrices considered, the desired accuracy or running time, etc.
The goal of this toolbox is to provide the practioner with the best available methods, and propose an easy tool for the researcher to compare the different methods.
This is version 1.2. Please report any bug, comment or suggestion to jsr.louvain@gmail.com
Raphael Jungers (2021). The JSR toolbox (https://www.mathworks.com/matlabcentral/fileexchange/33202-the-jsr-toolbox), MATLAB Central File Exchange. Retrieved .
Inspired: The CSSystem toolbox
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
In jointTriangul, the return value for block in the 1d case should be {M}, instead of M, in order to have the same output format as for the higher-dimensional case, i.e.
if n==1
triang=0;
blocks={M};
B = 1;
return;
end