0 of 9 questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 9 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Time series data can be created with?
Time units of time series data are available on which property?
Let ts = timeseries(zeros(100,200),linspace(3,4,100)). What is the length of Time in this timeseries ?
What is the data sample size in the previous example?
How to resample a timeseries data ts?
What is not true about timeseries event ?
Let,
A = timeseries([1,5,7]’,[10,20,30]);
A = selsample(A, ‘Index’, 2)
A = addsample(A, ‘Data’, [5,7], ‘Time’, [35, 45])
A.Data = ?
Let,
A = timeseries([1,5,7]’,[10,20,30]);
B = timeseries([2,7,9]’,[13,22,35]);
[A,B] = synchronize(A, B, ‘Union’)
A.Time = ?
Let,
A = timeseries([1,5,7]’,[10,20,30]);
B = timeseries([2,7,9]’,[13,22,35]);
[A,B] = synchronize(A, B, ‘Uniform’, ‘Interval’, 5)
A.Time = ?