I have an array of data, with non-leap years, and in which array was separated:
Data = [year month day data1 data2];
Size = 14965 rows and 5 columns
And I have an array parameters, to compare with "data1" and "data2", with size 365 rows and 2 columns, where in column 1 I have the parameter x1 to compare with "data1" and in column 2 I have x2 to compare with "data2".
Parameters = [x1 x2]
Parameter x1 should be compared to "data1" daily, where I should analyze whether "data1" > x1. The same must be done for "data2" in relation to x2.
I'm having trouble creating a method or a loop to make these daily and yearly comparisons of the "Data" array.
Can anyone help me?