how to write a changing title in a loop
29 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
vishant m.
el 16 de Nov. de 2013
Respondida: Azzi Abdelmalek
el 16 de Nov. de 2013
function data=coa08xxx_lines(n)
data=load('xydata');
y=data.Y;
u=data.X;
ii=ceil(n/3);
jj=ceil(n/ii);
for k=1:n;
subplot(ii,jj,k)
plot(u(:,k),y(:,k));
for n=1:9
(title (n,'th col of X vs',n,'th col of Y'))
end
end
This is a silly code, but it is the best way to display m question. from this code when n=9 o get 9 subplots, i want each one to have a title wihe corresponding n.
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 16 de Nov. de 2013
function data=coa08xxx_lines(n)
data=load('xydata');
data=load('xydata');
y=data.Y;
u=data.X;
ii=ceil(n/3);
jj=ceil(n/ii);
for k=1:n;
subplot(ii,jj,k)
plot(u(:,k),y(:,k));
title (sprintf('%dth col of X vs %dth col of Y',k,k))
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Subplots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!