convolution problem with real data
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    nur syafiqah
 le 18 Déc 2021
  
    
    
    
    
    Réponse apportée : Image Analyst
      
      
 le 18 Déc 2021
            I have coding for wavelet edge
j = [1 2 3 4];
s = 2.^j;
teta = wdenoise(y_amp);
teta_f = (1./s).*teta.*(freq./s);
cwt = conv (teta_f, y_amp);
But i have problem with conv which my data is in real not vector. what should i do to fix it
1 commentaire
  Walter Roberson
      
      
 le 18 Déc 2021
				I think you might be trying to say that teta_f is a 2D matrix? 
That could happen if theta is a column vector, or a 2d array with as many columns as s has.
Réponse acceptée
  Image Analyst
      
      
 le 18 Déc 2021
        Try conv2() instead of conv() if you have 2-D matrices instead of 1-D vectors.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Continuous Wavelet Transforms dans Help Center et File Exchange
			
	Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


