Calculate Mean of vector in more decimals
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Robert Achterstraat
el 3 de Jun. de 2024
Editada: Image Analyst
el 3 de Jun. de 2024
I want to calculate the mean of a vector in more than 4 decimals. The code
A = [0,1,9];
mean(A)
gives
ans = 3.3333
But I want 3.333333
0 comentarios
Respuesta aceptada
Michael
el 3 de Jun. de 2024
3.3333 is only the display of the variable 'ans'. The result of the calculation has better accuracy. Type
format long
and you can see the result with all significant decimals.
0 comentarios
Más respuestas (1)
Image Analyst
el 3 de Jun. de 2024
Editada: Image Analyst
el 3 de Jun. de 2024
It is already that.
A = [0,1,9];
format short g
m = mean(A)
fprintf('Mean with 30 decimal places is %.30f.\n', m);
format long g
m = mean(A)
and
0 comentarios
Ver también
Categorías
Más información sobre Filename Construction 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!