Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. x1=[-11.39 -6.88 -2.162 -0.77 -0.404 -0.205 -0.2 0 0.2 0.205 0.395 0.533 0.624 0.7 0.77];
  2. y1=[0 0 0 0 0 0 0 0 0 0 0.01 0.41 2.37 8.57 20.76];
  3. x2=[0 0];
  4. y2=[-5 30 ];
  5. x3=[0.7 0.7];
  6. hold off
  7. plot(x1,y1)
  8. hold on
  9. axis([-4 3 -2 20])
  10. xlabel('Wartosc napiecia [ V ]','fontsize', 20)
  11. ylabel('Wartosc natezenia [ mA ]','fontsize', 20)
  12. title('Charakterystyka diody krzemowej','fontsize', 20)
  13. plot(x2, y2, 'k', 'linewidth', 4)
  14. plot(y2, x2, 'k', 'linewidth', 4)
  15. plot(x1, y1, '-o','linewidth', 2)
  16. plot(x3, y2, '--k','linewidth', 2)
  17. set(gca,'fontsize',14);
  18. text(0.8,2,'x= 0.7')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement