Matlab標籤顯示在刻度之間

問題:Matlab標籤和刻度線默認是對齊的,如何將標籤設置到刻度線之間? 三個實例。 plot類型 clear; clc; x = 0:0.1:2*pi; y = sin(x); plot(x, y) set(gca, 'yticklabel', []) % 清空默認的標籤 yLabels = {'one', 'two', 'three', 'four', 'five'}; % 待添加的標籤
相關文章
相關標籤/搜索