how to write a changing title in a loop
29 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 11 月 16 日
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!