Pooja Patel
Followers: 0 Following: 0
Statistiques
RANG
12 167
of 295 467
RÉPUTATION
4
CONTRIBUTIONS
4 Questions
4 Réponses
ACCEPTATION DE VOS RÉPONSES
75.0%
VOTES REÇUS
0
RANG
of 20 234
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 912
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
How to compare one column of one matrix with all columms of other matrix one by one? matlab 2014b
suppose N is 7x8 matrix, M is 7x8 matrix. both are different i want N(:,1)-M(:,1);N(:,1)-M(:,2);N(:,1)-M(:,3)...........N(:,2)-...
plus de 7 ans il y a | 2 réponses | 0
2
réponsesQuestion
In Mfcc function why we take frequency from 300 to 3700 only (R=[LF HF] =[300 3700])? Is it standard? can't we take all frequency for same?
In Mfcc function why we take frequency from 300 to 3700 only (R=[LF HF] =[300 3700])? Is it standard? can't we take all frequenc...
plus de 7 ans il y a | 1 réponse | 0
0
réponsehow to make a colum of multiple 1 to 5. i want to make column vector of [1;1;1;1;1;1;1;1;1;1;1;1;1;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;3;3;3;3;3;3;3;3;3;3;3;3;3]. is there any way to make this kind of vector instead of typing this many times.
this is done by using repmat function. [repmat([1],14,1); repmat([2],20,1)] Thank you
plus de 7 ans il y a | 0
Question
how to make a colum of multiple 1 to 5. i want to make column vector of [1;1;1;1;1;1;1;1;1;1;1;1;1;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;3;3;3;3;3;3;3;3;3;3;3;3;3]. is there any way to make this kind of vector instead of typing this many times.
i want to print [1;1;1;1;1;1;1;1;1;1;1;1;1;;1;1;1;1;1;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;2;3;3;3;3;;33;3]. but without typing...
plus de 7 ans il y a | 5 réponses | 0
5
réponsesFinding maximum overlaps in a matrix
use max function
plus de 7 ans il y a | 0
| A accepté
delete rows from cell array
A(1:2)={rand(10,6)} A = [10x6 double] [10x6 double] >> row=2; A{1}(2,:)=[] %delete 1 row from 1 cell A = ...
plus de 7 ans il y a | 0
Question
I want to perform SVD on cell matrix. how to apply svd on bunch of matrix? or i have to apply svd on all single matrix? but I have so many matrix of different sizes. i have used cell function for that. now for apply svd please help me.
* here is my code: * Tw = 40 ; Ts = 20; alpha = 0.97; M = 20; C = 6; L = 22; LF = 300; HF = 3700; * filelist1=dir('*.wav');...
plus de 7 ans il y a | 1 réponse | 0
1
réponseHow to perform fft
* amp1 = abs(fft(x1)); %Retain Magnitude * % amp11 = amp1(1:Nsamps1/2); %Discard Half of Points * % f11 = Fs*(0:Nsamps1/2...
plus de 7 ans il y a | 0