Extracting data from a given figure?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Cladio Andrea
el 21 de Feb. de 2015
Comentada: Geoff Hayes
el 21 de Feb. de 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 comentarios
Respuesta aceptada
Geoff Hayes
el 21 de Feb. de 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 comentarios
Geoff Hayes
el 21 de Feb. de 2015
Do the zeros correspond to data (packet sizes) that are valid, or should they be ignored?
Más respuestas (0)
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!