A problem I have using the subplot command

1 visualización (últimos 30 días)
Fan Yang
Fan Yang el 12 de Mzo. de 2020
Respondida: Walter Roberson el 12 de Mzo. de 2020
When I run the script, I expect one of the outpots to be a 8 by 3 subplot.
However, one of the plots in the subplot is missing.
When I simply tried to plot the data from the missing plot, it worked out just fine.
% calling all data into a cell array
clear all; close all; clc;
DATA = {}; K = {}
TTID = 1:8; TLID = 1:3
count = 0;
for i = 1:numel(TTID);
for j = 1:numel(TLID);
fname = sprintf('%s%i_%s%i.%s','TT',TTID(i),'TL',TLID(j),'txt')
T = textread(fname);
T = T(:,[1,2]);
T(:,2) = T(:,2) / (pi*0.15^2);
DATA{i,j} = T;
plot(T(:,1),T(:,2))
title(fname);
count = count + 1
subplot(8,3,count)
end
end
  1 comentario
Walter Roberson
Walter Roberson el 12 de Mzo. de 2020
Please post your code. I can think of a few different ways this could happen.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 12 de Mzo. de 2020
% calling all data into a cell array
clear all; close all; clc;
DATA = {}; K = {}
TTID = 1:8; TLID = 1:3
count = 0;
for i = 1:numel(TTID);
for j = 1:numel(TLID);
fname = sprintf('%s%i_%s%i.%s','TT',TTID(i),'TL',TLID(j),'txt')
T = textread(fname);
T = T(:,[1,2]);
T(:,2) = T(:,2) / (pi*0.15^2);
DATA{i,j} = T;
count = count + 1
subplot(8,3,count)
plot(T(:,1),T(:,2))
title(fname);
end
end

Más respuestas (0)

Categorías

Más información sobre Data Distribution Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by