Advertisement
Ostu

Untitled

Nov 14th, 2021
1,486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.25 KB | None | 0 0
  1. %% Bok
  2. Ub=[0.09 0.11 0.11 0.15 0.09 0.13 0.12 0.08 0.05 0.04 0.05 0.11 0.07 0.07 0.05 0.02 0.01 0.04 0.06 0.05]
  3. figure(3)
  4. plot(mm,Ub)
  5. xlabel 'Przesunięcie X [mm]'
  6. ylabel 'Napięcie U [V]'
  7. pb=polyfit(mm,Ub,6)
  8. Yub=polyval(pb,mm)
  9. hold on
  10. plot(mm,Yub)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement