how to plot a graph without any marking in axes?
3 次查看(过去 30 天)
显示 更早的评论
whenever im ploting a graph the goddam marking is shown on the axes?how to omit that?
0 个评论
采纳的回答
Thomas
2012-3-12
By markings, do you mean the Ticks on the Xaxis and Yaxis..
you can remove them by:
figure1 = figure;
axes1 = axes('Parent',figure1,'YTick',zeros(1,0),'XTick',zeros(1,0));
box(axes1,'on');
hold(axes1,'all');
plot(whatever you want to plot)
0 个评论
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!