Bar plot problem with legend

1 次查看(过去 30 天)
If I have
A1 =
1.0e-013 *
Columns 1 through 8
0.1481 0.1574 0.1465 0.1481 0.1574 0.1465 0.1481 0.1574
Column 9
0.1465
And
A2 =
1.0e-013 *
Columns 1 through 8
0.1250 0.1523 0.1465 0.1250 0.1523 0.1465 0.1250 0.1523
Column 9
0.1465
How can I plot either variables, on the same bar plot?
bar([A1 A2])
legend('A1,'A2')
If MATLAB said:
Warning: Ignoring extra legend entries.
> In legend at 278
What's the mistake?

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-1-31
编辑:Azzi Abdelmalek 2014-1-31
A1 =1.0e-013 *[ 0.1481 0.1574 0.1465 0.1481 0.1574 0.1465 0.1481 0.1574]
A2= 1.0e-013 *[0.1250 0.1523 0.1465 0.1250 0.1523 0.1465 0.1250 0.1523]
bar([A1' A2'])
legend('A1','A2')
  6 个评论
Francesco
Francesco 2014-1-31
But If I have A1 and A2 variables, for example, A1=A2=1*n how I can do the bar plot?
Azzi Abdelmalek
Azzi Abdelmalek 2014-1-31
The same as the above answer
bar([A1' A2'])
legend('A1','A2')

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Legend 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by