Creating a for loop that goes through 12 month data in sets of 2

7 Ansichten (letzte 30 Tage)
Hi guys,
Ive been trying to implement a for-loop to plot graphs from a set data with each plot having 2 months in it, so the first plot would have all values from jan to feb and 2nd would have all values from march till april.
I also have been to trying to make the sets of data into 2 lines where the first is the plots for data constiting of jan to jun and the second line being data from jul to dec.
Thank you, any guidance would be appreciated

Akzeptierte Antwort

Eric Sofen
Eric Sofen am 3 Dez. 2021
T = readtable('Levenmouth7MWTurbineData2019.csv') ;
T.month = month(t.disc_TimeStamp);
tiledlayout(3,2)
for m = 1:2:12
monthMatch = any(T.month == [m m+1],2);
% or
% monthMatch = (T.month == m | T.month == m+1);
Tplot = T(monthMatch, :);
% polar plot
nexttile
polar(Tplot.mean_NacelleOrientation_Deg, Tplot.mean_WindSpeed_mps,'.')
end
This approach assumes you've just got one year of data (otherwise, you'll combine Jan-Feb 2019 and Jan-Feb 2020 into one plot). Then you would need multiple grouping variables - month and year.

Weitere Antworten (1)

KSSV
KSSV am 3 Dez. 2021
You can proceed like below.
T = readtable('Levenmouth7MWTurbineData2019.csv') ;
thedates = datevec(T.(1)) ;
% plot for Jan and Feb by getting indices of them
idx = thedates(:,2)==1 | thedates(:,2)==2 ;
% plot third column
plot(T.(1)(idx),T.(3)(idx))
  1 Kommentar
Sebastian Sunny
Sebastian Sunny am 3 Dez. 2021
Thank you for the feedback however my task requires me to use implent a for loop strusture when plotting, i also am using polar plots for the task

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by