Blame view

res2temp628.m 312 Bytes
b197c3fdf   bmarechal   first commit
1
2
3
4
5
  function T = res2temp628(R)
  
  res2temp628 = @(R) 0.463200932294057566 + 13.5049710820894688 * (1000./R) + -30.5191222755238414 * (1000./R).^2 + 231.098593852017075* (1000./R).^3 + -550.122691885568202 * (1000./R).^4 + 806.038547554984689 * (1000./R).^5 + -198.510489917360246 * (1000./R).^6;
  
  T = res2temp628(R);