Ciao a tutti,
sto cercando di fare un diagramma a barre in cui presento dei dati settimanali, sull'asse x vorrei che venisse visualizzato un testo che indicasse 'Week 1','Week 2',...,'Week N'. Qualcuno mi sa dire come poterlo fare?
Questo è il codice che ho usato finora:
figura_d2='Istogramma S2';
fig_d2=figure('Position',[0 0 4*scrsz(3)/5 4*scrsz(4)/5]);
subplot(2,1,1)
b1=bar((1:1:length(Q_S2)),Qgas_S2,1.5);
xlabel('Week')
ylabel('Weekly Energy S2 (kWh)')
legend('Gas Need','Loop Supply')
b1(1).FaceColor = 'Red';
b1(2).FaceColor = 'Blue';
subplot(2,1,2)
b2=bar((1:1:length(Q_S2)),Qgas_S2m2,1.5);
xlabel('Week')
ylabel('Weekly Energy S2 (kWh/m2)')
legend('Gas Need','Loop Supply')
b2(1).FaceColor = 'Red';
b2(2).FaceColor = 'Blue';
Grazie