Displaying 1 result from an estimated 1 matches for "labeltime1".
Did you mean:
labeltime2
2013 Mar 21
1
All unique combinations
... c(6,"Monday_25_03"),
c(7,"Tuesday_26_03"),
c(8,"Wednesday_27_03"),
c(9,"Thursday_28_03"),
c(10,"Friday_ 29_03"))
As have a plotting code that takes two input arguments
plot_two_time_frames(time1,LabelTime1,time2,LabelTime2)
these inputs are
time1: integer from TimeIndex. TimeIndex[i,1]
LabelTime1: Labels from TimeIndex[i,2]
time2: integer from TimeIndex, TimeIndex[i,1]
LabelTime2: Labels from TimeIndex[i,2]
the times 1 and time 2 should be unique combinations and never the same number. I unders...