Why does it gives matrix dimension must agree?
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
i am trying to plot this equation: x=0.011*V+(1.3e-5*V/R^2)
program:
R=3e-7:1e-7:10e-7;
V=0.5;
Vth=0.011*V+(1.3e-5*V/R.^2);
plot(R,Vth);
0 commentaires
Réponse acceptée
  Mischa Kim
    
      
 le 27 Mai 2014
        
      Modifié(e) : Mischa Kim
    
      
 le 27 Mai 2014
  
      Anwesha, use
 R   = 3e-7:1e-7:10e-7;
 V   = 0.5;
 Vth = 0.011*V + (1.3e-5*V./R.^2);  % note the dot in front of / sign
 plot(R,Vth);
0 commentaires
Plus de réponses (1)
  rifat
      
 le 27 Mai 2014
        You are not dividing element by element. Use the following lines instead:
R=3e-7:1e-7:10e-7;
V=0.5;
Vth=0.011*V+(1.3e-5*V./R.^2);
plot(R,Vth);
0 commentaires
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!