This is a follow-on problem to Problem 2413: Temperature Conversion Utility.

You are provided a cell array of strings that contains the source temperature and units (in various formats) and a separate cell array of strings that contains the target temperature units (in various formats). Produce a numerical vector of converted temperature values.

Example:

 T_in  = {'100 Celsius', '50degF', '90K', strcat('111',char(176),'R')};  
 T_to  = {'R','C','degF','kelvin'}; 
 T_out = [671.67 10 -297.67 61.6666667];

For reference, temperature conversion formulas are available on Wikipedia.

Solution Stats

112 Solutions

29 Solvers

Last Solution submitted on Dec 03, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...