When the matlab code is wrong, the tips can't show correctly.
My pc's default language is Chinese. I don't know if that's the reason.
wrong one:
x=1:1:100; y=10*x*x; plot(x,y) title('test')
correct one:
x=1:1:100; y=10*x.*x; plot(x,y) title('test')
tip:
