how to write a changing title in a loop

200 views (last 30 days)
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.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 16 Nov 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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!