How do I insert a variable value in legend of a plot?

207 次查看(过去 30 天)
I have a varible p, with a value -2.2. How do I insert this value in the legend function, for a plot?
eg.- legend('Value 1=p'); % I wish to have the numeric value of p (2.2) in place of 'p'.

采纳的回答

Murugan C
Murugan C 2021-9-6
use below code
value_x = 2.2;
value_y = 2.5;
legend(sprintf('Value-X = %g',value_x),sprintf('Value-Y = %g',value_y))

更多回答(1 个)

DGM
DGM 2021-9-6

类别

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