Blame view

res2temp16943.m 146 Bytes
b197c3fdf   bmarechal   first commit
1
2
3
4
5
  function T = res2temp16943(R)
  
  res2temp16943 = @(R) 10.^(3.4738 * (log10(1000./R)).^2 + 5.1198 * log10(1000./R) + 2.3681);
  
  T = res2temp16943(R);