Hi, I wanted to know how to set string limits for a graph. I wanted to set axis limits as months of a year ('Jan' 'Feb 'Mar'). Also wanted to know whether I can pass an array or pass variable with predefined values in the xlim function. Thanks in advance.

 Akzeptierte Antwort

Amit
Amit am 2 Feb. 2014

0 Stimmen

set(gca,'XTick',1:12,'XTickLabel',{'Jan','Feb','Mar','Apr' .... etc})

2 Kommentare

Aditya
Aditya am 3 Feb. 2014
Can we display variables instead of static strings? For eg. I want to display years like 2009,2010,... etc which should be dynamic
Sure. You can make up a cell array with any string variables you want in it.
index = 1;
for y = 2009 : 2020
ca{index} = y; % or num2str(y) or sprintf('Year=%d', y) or whatever...
index = index + 1;
end

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 2 Feb. 2014

Kommentiert:

am 3 Feb. 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by