I want to see the legend for each n
1 回表示 (過去 30 日間)
古いコメントを表示
My graph is showing for each n but legend doesn't working. How to solve the problem?
for n=linspace(1,length(t),10)
plot(x/L,(c(n,:)))
legend(['t=' num2str(n)],'location','southeast');
end
0 件のコメント
採用された回答
madhan ravi
2018 年 7 月 17 日
編集済み: madhan ravi
2018 年 7 月 17 日
for n=linspace(1,length(t),10)
plot(x/L,(c(n,:)))
legend(['t=' , num2str(n)],'Location','southeast');
end
% Use comma before num2str and Location L is caps lock.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Legend についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!