I have a load profile matrix 96x1, a value for every 15min..
But I want to plot this in a graph with the plot figure of the 15min. data but with the x axis labeled in hour (per 4 values 1 indicator on the x axis, starting from 0 to 24h.
Can this be done?

 채택된 답변

Jonas
Jonas 2022년 12월 8일

0 개 추천

you mean something like that? or do you want another format?
plot((1:96)/4,rand(96,1));
xticks(0:3:24)
xlim([0 24]);
xlabel('time / h')

댓글 수: 1

Stef De Vos
Stef De Vos 2022년 12월 8일
exactly this. probably a stupid question but I couldn't get it to work. Thanks for the help!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Bora Eryilmaz
Bora Eryilmaz 2022년 12월 8일

0 개 추천

Something like this?
for k = 0:20
x = minutes(15*k + linspace(0,15,96));
y = cumsum(rand(96,1));
p = plot(x,y);
hold on
end
ax = gca;
ax.XAxis.TickLabelFormat = 'h';
ax.XAxis.MinorTickValues = hours(0:0.25:24);
ax.XAxis.MinorTick = 'on';

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

릴리스

R2022b

질문:

2022년 12월 8일

댓글:

2022년 12월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by