Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
how to save two variables into csv files
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
how to save two variables into csv files in matlab for x and t from wav file ,and do that for multiple wav file I use this code to read the wav file % load an audio file
[x, fs] = audioread('a66.wav');
x = x(:, 1);
N = length(x);
t = (0:N-1)/fs;
save a66.csv x -ascii -double
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!