![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/175658/image.jpeg)
how to make my data appear in more accurate way ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
aliaa madbouly
el 15 de Sept. de 2014
Comentada: aliaa madbouly
el 16 de Sept. de 2014
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145408/image.jpeg)
my data appear like this after i plot it, i know that mean there are a big deference between the data but i want to see the low data so should i make filter and how i do it ?
0 comentarios
Respuesta aceptada
Image Analyst
el 15 de Sept. de 2014
Editada: Image Analyst
el 16 de Sept. de 2014
You can take the log of the data. There is even a function that will do it for you and plot it, semilogy():
fontSize = 22;
h= [2 5 6 8 3 4 2 3 5 6 1000 5 6 8 2 35 1002 1020 5 6 8 1050 ]
logh = log(h);
subplot(1, 2, 1);
plot(logh, 'b*-', 'LineWidth', 3, 'MarkerSize', 15);
xlabel('index', 'FontSize', fontSize);
ylabel('log(h)', 'FontSize', fontSize);
grid on;
subplot(1, 2, 2);
semilogy(h, 'b*-', 'LineWidth', 3, 'MarkerSize', 15)
xlabel('index', 'FontSize', fontSize);
ylabel('h', 'FontSize', fontSize);
grid on;
% Enlarge figure to full screen.
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/175658/image.jpeg)
4 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre AI for Signals 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!