Undefined function or variable 'tiledlayout'
5 ビュー (過去 30 日間)
古いコメントを表示
n=-100:20/100:100;
tiledlayout(2,2);
%y1
nexttile
y1=sin(0.5*n);
plot(n,y1);
title('y1');
%y2
nexttile
y2=sin(0.7*n);
plot(n,y2);
title('y2');
%y3=y1+y2
nexttile
y3=y1+y2;
plot(n,y3);
title('y3');
0 件のコメント
採用された回答
Walter Roberson
2019 年 10 月 4 日
you probably do not have a new enough matlab release. tiledlayout is quite new.
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で File Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!