Estadística
16 Preguntas
2 Respuestas
CLASIFICACIÓN
19.888
of 300.765
REPUTACIÓN
2
CONTRIBUCIONES
16 Preguntas
2 Respuestas
ACEPTACIÓN DE RESPUESTAS
6.25%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 21.084
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 170.941
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
can anyone help me to get output of this for loop in matrix like if number of samples are 5 then filtered signal x should be first sample in first column,second sample in second and likewise. it is getting overwrite output for filtered signal x.
for k = 1:length(AudioFile) filename = AudioFile(k).name; [y,fs] = audioread(filename); y = medfilt1(y(k,:),3); ...
más de 4 años hace | 0 respuestas | 0
0
respuestasPregunta
i want to use classification learner application from mathwork for my classification task.For the data i am having the array of size of 14956*37. It has 37 features.but i don't understand how to select responses and predictors in it.can anyone help?
Healthy_physionet_LDTP_hist_FeatSelect=Healthy_physionet_LDTP_hist(:,I); Unhealthy_physionet_LDTP_hist_FeatSelect=Unhealthy_phy...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasHow to resolve the "Index exceeds matrix dimensions" error ?
Hi, I am getting same error in this following loop but on selected samples , even though they are of same length, Only Some of t...
más de 5 años hace | 0
How to save a figure through each run of a for loop?
Hi, I am having same type of code but i want to save figures from two for loop.how can I do this.I have tried by following comma...
más de 5 años hace | 1
Pregunta
i have created samples of audio signal and want to generate separate spectrogram of each sample which should be automatically save to a folder . how can I do it?
nfft = 1024; hop = 256; [y,fs] = audioread('signal.wav'); [s,f,t,p] = spectrogram(y,hanning(nfft),nfft-hop,nfft,fs);
más de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
I am using matlab trial online R2019b.but while running below code it showing error file specified is not found in matlab path.but my code and wav file exist in same folder. How can i solve it. Please help
(s, fs) =audioread('a001.wav')
casi 6 años hace | 1 respuesta | 0
1
respuestaPregunta
I want to plot spectogram for my audio signal. What steps i have to follow for that.
(s, fs) =audioread('a01.wav')
casi 6 años hace | 1 respuesta | 0
1
respuestaPregunta
I want to find no. Of samples in particular window size. So that i can decide my nfft size.. How i can do that with matlab
W_size=10; Ovlap=50;
más de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
How to read excel file in matlab. my excel file contains alphanumerical data in 1 column and numerical data in other, i am trying to read complete file, but in result ,i am getting only numerical data.please help
aa=xlsread('G:\test.xlsx');
más de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
how to install jacket toolbox or GpuMat toolbox. can u please tell me Is knowlwdge of CUDA require to use these toolboxes.thank you
Please give me installation link.
más de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
can you help me to vectorize this for loop
final_y = gpuArray(fft_frame.*y2.*y3.*y4); final_y(1,:) = []; % eliminating first energy r...
casi 8 años hace | 0 respuestas | 0
0
respuestasPregunta
how to vectorize this for loop
[mrows,ncols] = size(spec); if (mrows==1) mrows=ncols; ncols=1; spec = spec(:); end % ---- edit out ...
casi 8 años hace | 0 respuestas | 0
0
respuestasPregunta
how to vectorize .
for i=1:no_frame temp = downsample(fft_frame(:,i),2); % Down sampling by 2 y2(:,i) = [temp; zero...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
How to vectorize this for loop
for i = 1:no_frame frame(:,i) = y(start:stop).*wind_sam; start = start+h_size; stop = start+w_s...
casi 8 años hace | 3 respuestas | 0
3
respuestasPregunta
can u please help me to write next code for tonic extraction by highest peak method.
%% Pitch detection by AUTOCORREALATION maxlag = fs/50; r = xcorr(w, maxlag, 'coeff'); d=(-maxlag:maxlag)/fs; subplot(...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
i have written code for pitch detection by harmonic product spectrum ,is this correct and if not can u please correct it.thanks in advance.
[s,fs]=audioread('sample.wav') fdatool l=length(s); t=(0:1:l-1)/fs; %% Framing f_d=0.1; f_s=floor(l*f_d); %%frame ...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
how to vectorize this for loop
tic; [s,fs]=audioread('sample.wav'); fdatool l=length(s); figure('name','speechsignal'); subplot(3,3,1); plot (s); ti...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
how to vectorize these for loop?
clc; clear all; close all; tic; [s,fs]=audioread('sample.wav') fdatool l=length(s); figure('name','spee...
más de 8 años hace | 1 respuesta | 0

