Adding latex text to a curve in a matlab plot

56 次查看(过去 30 天)
After plotting the 2 points in a graph for x* and y*, I'm able to create a curve that a variable for both x* and y* through the following code:
v_mar_plot = linspace(0,9,9000);
z_plot = [0, 0.9];
omega_plot = [3.16];
p_index=3;
for j = z_plot
for i = omega_plot
for k = 1:length(p_index)
p(p_index) = plot(sort(v_mar_plot),q_mar_plot(i,sort(v_mar_plot),j));
end
end
end
I'm however unable to figure a way to add the text M_p^∗=3.16 at z^∗=0, and similarly M_p^∗=3.16 at z^∗=0.9 next to the curve through MATLAB. I would hence like help on how would it be possible to include this into the code itself so as to obtain as many labels as I create curves based on the input to z_plot that I add?

采纳的回答

Cris LaPierre
Cris LaPierre 2020-9-20
Try using the text function and set the 'Interpreter' name-vale pair to 'latex'.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Printing and Saving 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by