我有过
figure(9)
clf
plot(a,b,'.k')
和矩阵A,如何在图中显示A?LaTeX解释器有什么问题吗?谢谢
发布于 2019-05-19 10:23:18
可以这样做。
latex_word=['$' latex(sym(A)) '$']
text(x,y,latex_word,'Interpreter','latex') % x,y is where you put the latex into graph
https://stackoverflow.com/questions/56204412
复制