How can I resolve an invalid date argument using plot?
7 ビュー (過去 30 日間)
古いコメントを表示
x = (1804:2300);
y = 10./(1+(9.*exp(-0.01*x)));
plot (x,y, 'b', '-');
x = [1804 1927 1960 1974 1987 1999 2011];
y = [1 2 3 4 5 6 7];
plot (x,y, 'r', 's');
title ('Population Over Time');
xlabel = 'Year';
ylabel = 'Population (in billions)';
legend ('Population model' , 'Measured Population');
hold on;
0 件のコメント
採用された回答
madhan ravi
2019 年 2 月 28 日
x = 1804:2300;
y = 10./(1+(9.*exp(-0.01*x)));
yyaxis left
plot(x,y, 'b-');
xx = [1804 1927 1960 1974 1987 1999 2011];
yy = [1 2 3 4 5 6 7];
yyaxis right
plot (xx,yy,'rs')
title ('Population Over Time')
xlabel('Year')
ylabel('Population (in billions)')
legend('Population model' , 'Measured Population')
その他の回答 (1 件)
KSSV
2019 年 2 月 28 日
Read about plot
x = (1804:2300);
y = 10./(1+(9.*exp(-0.01*x)));
plot (x,y, 'b', '-');
hold on
x = [1804 1927 1960 1974 1987 1999 2011];
y = [1 2 3 4 5 6 7];
plot (x,y, 'r', 's');
title ('Population Over Time');
xlabel = 'Year';
ylabel = 'Population (in billions)';
legend ('Population model' , 'Measured Population');
hold on;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!