How to create a plotmatrix from a cell?

조회 수: 1 (최근 30일)
toka55
toka55 2020년 12월 11일
댓글: toka55 2020년 12월 15일
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?

채택된 답변

Sindar
Sindar 2020년 12월 15일
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?)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by