I need help graphing these simple functions. I keep getting a blank graph
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Brendan
le 27 Sep 2023
Réponse apportée : David Hill
le 27 Sep 2023
Question: Plot the maximum power absorbed in a resistor if the voltage across the resistor. Equations: v= (r/(r+100))*10 p= (v*(r)^2)/r
r=linspace(0,100,101);
v=(r/(r+100))*10;
p=(v*(r).^2)/r;
grid
plot(r,p);
0 commentaires
Réponse acceptée
David Hill
le 27 Sep 2023
Need a few more dots.
r=linspace(0,100,101);
v=(r./(r+100))*10;
p=(v.*(r).^2)./r;
grid
plot(r,p);
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots 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!
