Skip to content

Instantly share code, notes, and snippets.

@la3pna
Created November 1, 2017 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save la3pna/f69d098e9073686b990e91a52916fad1 to your computer and use it in GitHub Desktop.
Save la3pna/f69d098e9073686b990e91a52916fad1 to your computer and use it in GitHub Desktop.
%-- 02.11.2017 00.02 --%
f = -300:1:300
c = (f-32)/1.8
c_t = f/2
c_r = (f/10)*3
err_t = c_t-c
err_r = c_r-c
err_c = c-c
plot(c,err_t)
hold on
plot(c,err_r,'r')
plot(c,err_c,'g')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment