i have an Error using ^
    5 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    samuel herrera
 le 8 Avr 2021
  
    
    
    
    
    Réponse apportée : madhan ravi
      
      
 le 8 Avr 2021
            can anyone help me fixing this code
n = 0:1:50;
y = (0.3)^(n)*cos(2*pi*0.05)*heaviside(n);
plot(x,y)
Error using  ^  (line 51)
Incorrect dimensions for raising a matrix to a power. Check that the matrix is
square and the power is a scalar. To perform elementwise matrix powers, use '.^'.
and if i put the point it shows
n = 0:1:50;
y = (0.3).^(n)*cos(2*pi*0.05)*heaviside(n);
plot(x,y)
Error using  * 
Incorrect dimensions for matrix multiplication. Check that the number of
columns in the first matrix matches the number of rows in the second matrix. To
perform elementwise multiplication, use '.*'.
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

