How to create a plotmatrix from a cell?

1 vue (au cours des 30 derniers jours)
toka55
toka55 le 11 Déc 2020
Commenté : toka55 le 15 Déc 2020
I have two cell arrays (one for x values and one for y values), each containing 64 x 1 matrices with unequal dimensions. The respective x and y values belong together. I want to create an 8x8 scatterplot matrix. Can I use plotmatrix for this purpose or are there other solutions?

Réponse acceptée

Sindar
Sindar le 15 Déc 2020
A scatterplot matrix is for if you have several equally-sized columns that you want to plot against one another. That doesn't sound like your problem. It sounds like you have 64 sets of data that you want to plot separately.
Does this do it:
% number of cells
N = 4;
% generate test data
for ind=1:N
X{ind} = rand(randi(10),randi(10));
Y{ind} = rand(size(X{ind}));
end
% create a (here) 2x2 subplot arrangement
tiledlayout(sqrt(N),sqrt(N))
for ind=1:N
% in a particular subplot
nexttile
% scatter plot all Y points vs X points
scatter(X{ind}(:),Y{ind}(:))
end
(if you have 64 sets of data, where you want to create a scatterplot matrix for each set... may I recommend a separate figure for each plot so you can actually see anything?)
  1 commentaire
toka55
toka55 le 15 Déc 2020
Thanks exactly what I need.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by