How to write a legend in latex format

14 views (last 30 days)
Npc=2;
legend('\Sigma_{i=1}^{Npc} x^\prime_i','Total L_w','Noise');
In the below figure's legend, how do we need to include a variable Npc.

Accepted Answer

Star Strider
Star Strider on 20 Aug 2019
Try this:
Npc=2;
legend(sprintf('\\Sigma_{i=1}^{%d} x^\\prime_i',Npc),'Total L_w','Noise');
That worked correctly when I tested it with a plot of random data.

More Answers (1)

darova
darova on 20 Aug 2019
Concatenation?
Npc=2;
legend1 = ['\Sigma_{i=1}^{', num2str(Npc) ,'Npc} x^\prime_i'];
legend(legend1,'Total L_w','Noise');

Tags

Community Treasure Hunt

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

Start Hunting!