Blame view

pt100.m 79 Bytes
b197c3fdf   bmarechal   first commit
1
2
3
4
5
  function T = pt100(R)
  
  pt100 = @(R) (R/100.-1)/0.003850+273.15;
  
  T = pt100(R);