Extracting data from a given figure?
1 view (last 30 days)
Show older comments
Cladio Andrea
on 21 Feb 2015
Commented: Geoff Hayes
on 21 Feb 2015
Hello everyone, i have a figure as you can see, and what i want is to get x and y coordinates but as you can see i have a data at decimal points what i want to do is to get data from this figure and insert into a 3600x1 array, lets say if i have a data at 258.45 second then i want to have it at 259th row of the matrix, and the seconds that there is no data will be zero inside the matrix, can anyone help me please?
0 Comments
Accepted Answer
Geoff Hayes
on 21 Feb 2015
Cladio - what is the data that you used to generate the above function? Consider using ceil to round up your seconds to the nearest integer so that you can populate your 3600x1 matrix. For example, if
x = [0.1 12.34 45.32 258.45 1300.2 2501.9 3598.45];
y = [208 231 33 233 162 25 72];
data = zeros(3600,1);
then to populate data with x and y, you could try
data(ceil(x)) = y;
and you will observe that data(259) is 233. The above code assumes that no two packets arrive within the same second (else one will override the other in data).
2 Comments
Geoff Hayes
on 21 Feb 2015
Do the zeros correspond to data (packet sizes) that are valid, or should they be ignored?
More Answers (0)
See Also
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!