Borrar filtros
Borrar filtros

How to plot multiple audio files horizontally in MATLAB

3 visualizaciones (últimos 30 días)
Deepu S S
Deepu S S el 10 de Nov. de 2021
Comentada: Rik el 10 de Nov. de 2021

Respuesta aceptada

Chunru
Chunru el 10 de Nov. de 2021
n = 1000;
t = (0:n-1)'*.0001;
x = randn(n, 6); % 1000 samples 6 channels
y = 0.2*x + (1:6); % scale the x by 0.2, add offset for each channel
plot(t, y)
xlabel('t (s)');
set(gca, 'YTick', (1:6), 'YTickLabel', "ch"+(1:6))
  5 comentarios
Deepu S S
Deepu S S el 10 de Nov. de 2021
how to store the data from files as matrix?

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by