How do I get rid of the horizontal line on the y-axis in a line plot? Please see attached image below as an example. I want the horizontal line hidden.
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mangesh KAle
el 6 de En. de 2023
Respondida: Star Strider
el 6 de En. de 2023

5 comentarios
Dyuman Joshi
el 6 de En. de 2023
There might be a repetition in the data that causes this line.
Are the first and the last values same? If yes, remove the last data.
Otherwise, refer to Star Strider's answer
Respuesta aceptada
Star Strider
el 6 de En. de 2023
Since:
[x1,fs1]=audioread('Aniruddha heart beat.wav');
and
x1 = 962560*2
the red line is likely the second channel in ‘x1’ so:
y = x1(:,1);
plot(t1,y)
might be the solution.
.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!