Plot weighted sparsity pattern

1 次查看(过去 30 天)
Hi,
I am trying to visualize a weighted (i.e., color-coded) sparsity pattern. I tried "spy" but it only shows '1' and '0', and I want to show the weighted (color coded with spectra) dots.
For example, I created the adjacency matrix (for graph theory) using Pearson's correlation thresholded at p<0.01. However, I want to show the rho's in some thing like spy...
Please help!
Best,
Ji Hyun

采纳的回答

bym
bym 2012-7-16
编辑:bym 2012-7-16
See if this gets you close
x = rand(100);
y = zeros(100);
y(x<.025) = x(x<.025);
cmap = [1 1 1;jet];
imagesc(y)
colormap(cmap)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Discrete Data Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by