We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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')
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')
x=1:1:100; y=10*x.*x; plot(x,y) title('test')
tip: