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

조회 수: 6 (최근 30일)
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

채택된 답변

Eric Sofen
Eric Sofen 2021년 12월 3일
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.

추가 답변 (1개)

KSSV
KSSV 2021년 12월 3일
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
Sebastian Sunny
Sebastian Sunny 2021년 12월 3일
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

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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by