1
I have a data matrix, with non-leap years, and in which matrix it was separated:
Data = [year month data];
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]
The X1 parameter should be compared to "data1" daily, where I should analyze if "data1" > X1. The same should be done for "data2" in relation to x2.
I’m having trouble creating a method or a loop to make these daily comparisons and all the years of the matrix "Data".
Can someone help me?