How to pass a variable with latex interpreter in the legend?

조회 수: 49 (최근 30일)
Vikash Pandey
Vikash Pandey 2023년 12월 4일
댓글: Dyuman Joshi 2023년 12월 4일
I am mentioning the relevant part of the code below. r_Fit is supposed to be a variable. How do I pass its value in the legend with a mathematical expression, $\tau = $ attached to it? Please help.
a_Fit = output_parameters(1);
r_Fit = output_parameters(2);
r_Fit_Str = num2str(r_Fit);
N_AS_Above3_Fit = a_Fit.*N_Days.^(-r_Fit);
figure(002);
plot(N_Days, N_AS_Above3, '+', 'LineWidth', 3, 'MarkerSize', 14, 'MarkerEdgeColor', 'r');
hold on;
plot(N_Days, N_AS_Above3_Fit, 'k', 'LineWidth', 3);
lgd = legend({'$M>3$', '$\tau = $ r_Fit'}, 'interpreter', 'latex');

채택된 답변

Walter Roberson
Walter Roberson 2023년 12월 4일
lgd = legend(["$M>3$", "$\tau = $ " + r_Fit], 'interpreter', 'latex');
This will convert r_Fit according to internal (and seemingly inconsistent) rules about how many digits should be converted.
If you need more certainty in the formatting, use compose
  댓글 수: 3
Vikash Pandey
Vikash Pandey 2023년 12월 4일
편집: Vikash Pandey 2023년 12월 4일
One more question. I wish to add another variable in the second legend. I tried this, but it did not worked. It only prints the first legend and the first part of the second legend.
lgd = legend(["$M>3$", "$\tau = $ " + a_Fit "$p = $ " + r_Fit], 'interpreter', 'latex');
Walter Roberson
Walter Roberson 2023년 12월 4일
lgd = legend(["$M>3$", "$\tau = $ " + a_Fit + " $p = $ " + r_Fit], 'interpreter', 'latex');

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Dyuman Joshi
Dyuman Joshi 2023년 12월 4일
편집: Dyuman Joshi 2023년 12월 4일
Use compose to generate the string, modify it and use it as an input to legend().
Note that added \ before \tau.
str = compose(['$\\tau = $ %f'], r_fit)
str = [{'$M>3$'} str];
legend(str, 'interpreter', 'latex');
Change the modifier according to the data-type and according to the number of digits you want to show.
  댓글 수: 4
Vikash Pandey
Vikash Pandey 2023년 12월 4일
Thanks, Dyuman. it worked.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by