Undefined function or variable 'tiledlayout'

12 vues (au cours des 30 derniers jours)
mohammed samaheen
mohammed samaheen le 4 Oct 2019
Modifié(e) : Rik le 23 Août 2020
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');

Réponse acceptée

Walter Roberson
Walter Roberson le 4 Oct 2019
you probably do not have a new enough matlab release. tiledlayout is quite new.
  3 commentaires
Yashika
Yashika le 23 Août 2020
Do we have any alternative for older versions?
Steven Lord
Steven Lord le 23 Août 2020
See the subplot function.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur File Operations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by