MATLAB, turning numbers off on plot -
i'm pretty familiar of axis properties matlab plot, can't seem find of them effect displaying numbers or not. have plot numbers pretty meaningless, they're there visual representation of i'm working on. so, better if have numbers gone compeltely. there way this? thanks. (no not tick marks or of that, actualy numbers! =))
it's not tick marks you're after tick labels. set them empty lists:
set(gca,'xticklabel', [], 'yticklabel', [])
Comments
Post a Comment