cspy.m

cspy: a color-coded version of sparse matrix viewer spy
1,1K téléchargements
Mise à jour 6 juin 2014

Afficher la licence

Note de l’éditeur : This file was selected as MATLAB Central Pick of the Week

cspy Visualize sparsity pattern.
cspy(S) plots the sparsity pattern of the matrix S with L levels where
L by default is number of integers between min matrix value and max
matrix value .

cspy(S,'Marker', '*') use the this marker to plot the matrix S.

cspy(S, 'Marker', {'*', '+'}) use each marker per level in the same
order. The size of the marker cell array must be equal to the number of
levels, in otherwise is used the first marker for all levels.

cspy(S,'MarkerSize', M) use the M markersize to plot the matrix S.

cspy(S, 'Levels', L) use L levels to show different colors in the
matrix S. If the levels is a vector and has the same size to channels
is used one value for channel. Where level hasn't the same size is used
the mean value.

cspy(S, 'ColorMap', 'hot') use this model color to assign the colors.
By default the colormap is 'lines'.

cspy(S, 'XDir', 'Reverse') change the X direction (Reverse or Normal).
Default Normal

cspy(S, 'YDir', 'Reverse') change the Y direction (Reverse or Normal).
Default Reverse

cspy(S, 'Channels', 'on') use the channel value ('on' or 'off' ) for
plot the images channels in different subplots (rgb for example) or
where the matrix is n x m x c where c are the channels. if the channels
value is 'off' and the matrix has c channels with c different to 3(rgb)
the channels value is changed to 'on'.

Examples:
---------------------------------------------------------
cspy(bucky);
---------------------------------------------------------
rgb = imread('ngc6543a.jpg');
cspy(rgb, 'marker', '.', 'markersize', 5, 'colormap', 'hot');
---------------------------------------------------------
rgb = imread('ngc6543a.jpg');
cspy(rgb, 'marker', '.', 'markersize',5, 'colormap', 'hot', 'levels', 18);
---------------------------------------------------------
rgb = imread('ngc6543a.jpg');
cspy(rgb, 'marker', '.', 'markersize',5, 'colormap', 'hot', 'levels', 18, 'channels', 'on');
---------------------------------------------------------
rgb = imread('ngc6543a.jpg');
cspy(rgb, 'marker', '.', 'markersize',5, 'colormap', 'lines', 'levels', [2 15 3], 'channels', 'on');
---------------------------------------------------------
rgb = imread('ngc6543a.jpg');
cspy(rgb, 'marker', {'.', '+', '*'}, 'markersize',5, 'colormap', 'lines', 'levels', 3, 'channels', 'off');

Authors:
Hugo Gualdron - gualdron@usp.br
Jose Rodrigues - junio@icmc.usp.br
University of São Paulo

Citation pour cette source

Hugo Gualdron (2026). cspy.m (https://fr.mathworks.com/matlabcentral/fileexchange/46551-cspy-m), MATLAB Central File Exchange. Extrait(e) le .

Compatibilité avec les versions de MATLAB
Créé avec R2011b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Discrete Data Plots dans Help Center et MATLAB Answers
Remerciements

A inspiré : spy3D

Version Publié le Notes de version
1.6.0.0

Support for different marker type per level

1.5.0.0

Mistake where the matrix is not square solved.

1.4.0.0

Summary and description updated

1.3.0.0

- Mistakes with axes and the function flipud (Changed by YOrder=Reverse)
- Added XDir and YDir

1.2.0.0

Channels support

1.1.0.0

Error fixed: where the matrix levels is lower or equal to 1.

1.0.0.0