是否可以将矩阵打印成图形?

Is it possible to print matrix into graph?

我有

figure(9)
clf
plot(a,b,'.k')

和矩阵A。如何在plot中显示A?有 LaTeX 解释器吗?谢谢

可以这样做。

latex_word=['$' latex(sym(A)) '$']

text(x,y,latex_word,'Interpreter','latex') % x,y is where you put the latex into graph