round off problem in matlab

1 visualización (últimos 30 días)
Ali Asghar
Ali Asghar el 19 de Sept. de 2019
Comentada: Ali Asghar el 23 de Sept. de 2019
I have 4 variables each have 4 values (1x4) in it and I want to store all in value in 1 variable (4x4) but values are change when i do it.
MAV = [0.0924317411754942 0.0313003411430704 0.00365072354007141 0.00332056432198707]
waveLen = [172.697769103870 68.7603283596702 69.2536410243476 63.2141284111186]
zcdOut = [560 719 6155 6260]
slope_count = [478 212 4949 4830]
HG0_extracted_feature = [waveLen; MAV; zcdOut; slope_count]
it gives
173 69 69 63
0 0 0 0
560 719 6155 6260
478 212 4949 4830
note MAV values become zero, it round off waveLen, etc values...
how i correct it?
Thank you

Respuesta aceptada

Steven Lord
Steven Lord el 19 de Sept. de 2019
Based on that display I suspect one or both of the variables zcdOut or slope_count are stored in an integer class. When you combine data stored in an integer class with data stored in a non-integer class, "all elements of the resulting matrix are given the data type of the left-most integer".
Consider converting the variable stored in an integer class to double before combining them into one array, so that the resulting matrix is also a double.
  4 comentarios
Steven Lord
Steven Lord el 22 de Sept. de 2019
Check the types of variables using class or whos.
As Stephen Cobeldick said, to convert variables to double use the double function.
Ali Asghar
Ali Asghar el 23 de Sept. de 2019
thanks dear

Iniciar sesión para comentar.

Más respuestas (2)

Raj
Raj el 19 de Sept. de 2019
Just add 'format longg' before your code like this:
format longg
MAV = [0.0924317411754942 0.0313003411430704 0.00365072354007141 0.00332056432198707]
waveLen = [172.697769103870 68.7603283596702 69.2536410243476 63.2141284111186]
zcdOut = [560 719 6155 6260]
slope_count = [478 212 4949 4830]
HG0_extracted_feature = [waveLen; MAV; zcdOut; slope_count]
Read about format here:
  1 comentario
Ali Asghar
Ali Asghar el 20 de Sept. de 2019
Dear i have data called filter_datawindow 24000x4.
i apply functions in loop that store the value of waveLen, MAV, zcdOut, slope_count in workspace in long format but when i merge all values is give same result as
173 69 69 63
0 0 0 0
560 719 6155 6260
478 212 4949 4830
for i = 1:4
waveLen(i) = find_waveform_length(filter_datawindow(:,i))
MAV (i)=find_MAV(filter_datawindow(:,i),2.4e4)
zcdOut (i) = zcd(filter_datawindow(:,i));
slope_count (i) = find_slopSign(filter_datawindow(:,i),0.001)
end
format longg
HG0_extracted_feature = [waveLen; MAV; zcdOut; slope_count]
gives
173 69 69 63
0 0 0 0
560 719 6155 6260
478 212 4949 4830

Iniciar sesión para comentar.


Matt J
Matt J el 19 de Sept. de 2019
Editada: Matt J el 19 de Sept. de 2019
The values are not changed. They are just displayed to the screen to 4 decimal points. Use format long to see more precision. Also, note that all elements are premultiplied by 1000.
  3 comentarios
Matt J
Matt J el 20 de Sept. de 2019
As Steven. mentioned, that is probably because one of the vectors you are merging is uint8 or similar.
Steven Lord
Steven Lord el 20 de Sept. de 2019
Rows 3 and 4 of the resulting array have values too large for uint8 or int8 so they would need to be at least 16-bit integers.

Iniciar sesión para comentar.

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by