I need help graphing these simple functions. I keep getting a blank graph
Mostrar comentarios más antiguos
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);
Respuesta aceptada
Más respuestas (1)
Replace all matrix divisions (/) by elementwise divisions (./).
Categorías
Más información sobre Electromechanical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
