Blame view

res2temp16945.m 145 Bytes
b197c3fdf   bmarechal   first commit
1
2
3
4
5
  function T = res2temp16945(R)
  
  res2temp16945 = @(R) 10.^(3.2497 * (log10(1000./R)).^2 + 5.1777 * log10(1000./R) + 2.499);
  
  T = res2temp16945(R);