Borrar filtros
Borrar filtros

Creating subplots based on a cell array

1 visualización (últimos 30 días)
Liam
Liam el 11 de Jul. de 2023
Comentada: Liam el 13 de Jul. de 2023
Hi,
If I have two cells like this:
cell1 = {'AA' 'AA' 'BC' 'BC' 'BC' 'DD' 'DD'; 1 2 3 4 5 6 7; 7 6 5 4 3 2 1; 5 9 8 7 6 5 4}
cell1 = 4×7 cell array
{'AA'} {'AA'} {'BC'} {'BC'} {'BC'} {'DD'} {'DD'} {[ 1]} {[ 2]} {[ 3]} {[ 4]} {[ 5]} {[ 6]} {[ 7]} {[ 7]} {[ 6]} {[ 5]} {[ 4]} {[ 3]} {[ 2]} {[ 1]} {[ 5]} {[ 9]} {[ 8]} {[ 7]} {[ 6]} {[ 5]} {[ 4]}
cell2 = {'AA' 'AA' 'BC' 'BC' 'BC' 'DD' 'DD'; 3 4 5 6 7 8 9; 2 3 4 5 6 7 8; 9 8 7 6 5 4 3}
cell2 = 4×7 cell array
{'AA'} {'AA'} {'BC'} {'BC'} {'BC'} {'DD'} {'DD'} {[ 3]} {[ 4]} {[ 5]} {[ 6]} {[ 7]} {[ 8]} {[ 9]} {[ 2]} {[ 3]} {[ 4]} {[ 5]} {[ 6]} {[ 7]} {[ 8]} {[ 9]} {[ 8]} {[ 7]} {[ 6]} {[ 5]} {[ 4]} {[ 3]}
Is there a way to create subplots based on matching the strings from the first row, where there is not necessarily an equal number of strings for all?
The final figures would look something like this:
Thank you!
  4 comentarios
Liam
Liam el 11 de Jul. de 2023
Yes, they will be sorted relative to each other already in a prior step
Liam
Liam el 11 de Jul. de 2023
Currently, the "titles" and data are actually stored how you said - text vector and a numeric matrix. I just assumed appending them together into a cell array would maybe make this subplot sorting easier.

Iniciar sesión para comentar.

Respuesta aceptada

Voss
Voss el 11 de Jul. de 2023
Editada: Voss el 11 de Jul. de 2023
cell1 = {'AA' 'AA' 'BC' 'BC' 'BC' 'DD' 'DD'; 1 2 3 4 5 6 7; 7 6 5 4 3 2 1; 5 9 8 7 6 5 4};
cell2 = {'AA' 'AA' 'BC' 'BC' 'BC' 'DD' 'DD'; 3 4 5 6 7 8 9; 2 3 4 5 6 7 8; 9 8 7 6 5 4 3};
assert(isequal(cell1(1,:),cell2(1,:)))
figure('Position',[50 50 500 1200]); % make a tall figure to see the subplots clearly
[g,g_id] = findgroups(cell1(1,:));
N = numel(g_id);
for ii = 1:N
idx = find(g == ii);
n = numel(idx);
for jj = 1:n
subplot(N*n,1,(ii-1)*n+jj)
plot([cell1{2:end,idx(jj)}],[cell2{2:end,idx(jj)}]);
title(cell1{1,idx(jj)});
end
end
  1 comentario
Liam
Liam el 13 de Jul. de 2023
Modifying this a little worked perfectly for me, thanks!

Iniciar sesión para comentar.

Más respuestas (1)

the cyclist
the cyclist el 11 de Jul. de 2023
cell1 = {'AA' 'AA' 'BC' 'BC' 'BC' 'DD' 'DD'; 1 2 3 4 5 6 7; 7 6 5 4 3 2 1; 5 9 8 7 6 5 4};
cell2 = {'AA' 'AA' 'BC' 'BC' 'BC' 'DD' 'DD'; 3 4 5 6 7 8 9; 2 3 4 5 6 7 8; 9 8 7 6 5 4 3};
numbers1 = cell2mat(cell1(2:end,:));
numbers2 = cell2mat(cell2(2:end,:));
[uniqueAlpha,~,indexFromUniqueToAll] = unique(cell1(1,:));
numberUniqueAlpha = numel(uniqueAlpha);
for na = 1:numberUniqueAlpha
columnsThisAlpha = find(indexFromUniqueToAll==na);
numberColumnsThisAlpha = numel(columnsThisAlpha);
figure
tt = tiledlayout(numberColumnsThisAlpha,1);
title(tt,uniqueAlpha(na))
for nc = 1:numberColumnsThisAlpha
nexttile
plot(numbers1(:,nc),numbers2(:,nc))
end
end

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by