Created
November 1, 2017 23:43
-
-
Save la3pna/f69d098e9073686b990e91a52916fad1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%-- 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