problem with time series objects

조회 수: 2 (최근 30일)
Richard
Richard 2012년 3월 31일
Im using the following to plot a time series plot:
x = cell(1,length(Year));
fh = figure;
x = cell2mat(Data{1}');
ts1 = timeseries(x,1:length(x));
ts1.TimeInfo.Units = 'hours';
ts1.TimeInfo.StartDate = ['01-Jan-' Year]; %
ts1.TimeInfo.Format = 'mmm, yy';
ts1.Time=ts1.Time-ts1.Time(1);
plot(ts1,'--k','linewidth',2);
xlabel('Time');
ylabel('Jm^{-2}');
However, the ylabel doesnt show as it should, in this case the ylabel should be Joules per meter squared, but the correct format isn't displayed on the plot, it just shows exactly what is written in the code. I also tried:
set(get(gca,'Ylabel'),'String','Jm ^{-2}');
But had the same outcome. How do I get the ylabel to respond as it would with regular figures?

채택된 답변

Oleg Komarov
Oleg Komarov 2012년 3월 31일
h = ylabel('Jm^{-2}');
set(h,'interpreter','tex')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Grid Lines, Tick Values, and Labels에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by