I want to see the legend for each n

1 回表示 (過去 30 日間)
Raj001
Raj001 2018 年 7 月 17 日
コメント済み: Raj001 2018 年 7 月 17 日
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

採用された回答

madhan ravi
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.
  1 件のコメント
Raj001
Raj001 2018 年 7 月 17 日
It should work.. But in my case,it does not works. Don't know why.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by