{"group":{"id":1,"name":"Community","lockable":false,"created_at":"2012-01-18T18:02:15.000Z","updated_at":"2026-05-26T00:16:20.000Z","description":"Problems submitted by members of the MATLAB Central community.","is_default":true,"created_by":161519,"badge_id":null,"featured":false,"trending":false,"solution_count_in_trending_period":0,"trending_last_calculated":"2026-05-26T00:00:00.000Z","image_id":null,"published":true,"community_created":false,"status_id":2,"is_default_group_for_player":false,"deleted_by":null,"deleted_at":null,"restored_by":null,"restored_at":null,"description_opc":null,"description_html":null,"published_at":null},"problems":[{"id":52090,"title":"Convert Thermocouple output voltage (in mV) to Temperature (in C)","description":"Convert Thermocouples of types (B,E,J,K,N,R,S,T) output junction voltage (in mV) to temperature (in C) using NIST coefficients rounded to the nearest 0.01 C.","description_html":"\u003cdiv style = \"text-align: start; line-height: 20.44px; min-height: 0px; white-space: normal; color: rgb(0, 0, 0); font-family: Menlo, Monaco, Consolas, monospace; font-style: normal; font-size: 14px; font-weight: 400; text-decoration: none solid rgb(0, 0, 0); white-space: normal; \"\u003e\u003cdiv style=\"block-size: 42px; display: block; min-width: 0px; padding-block-start: 0px; padding-top: 0px; perspective-origin: 407px 21px; transform-origin: 407px 21px; vertical-align: baseline; \"\u003e\u003cdiv style=\"font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 21px; text-align: left; transform-origin: 384px 21px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eConvert Thermocouples of types (B,E,J,K,N,R,S,T) output junction voltage (in mV) to temperature (in C) using NIST coefficients rounded to the nearest 0.01 C.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003c/div\u003e","function_template":"function t = thermocoupleVoltage2Temperature(type,v)\r\n  t=v;\r\nend","test_suite":"%%\r\nv =[11.313,12.545,2.009,12.648,8.846,1.611,4.059,7.690,13.245,13.345,2.423,13.422,13.241,6.858,11.118,2.211,5.997,12.680,11.009,13.272];\r\ntype='B';\r\nt=[1604.28, 1709.64,635.52,1718.48,1390.21,568.90,912.07,1285.39,1769.93,1778.60,698.87,1785.28,1769.59,1206.90,1587.60,667.07,1122.10,1721.22,1578.27,1772.27];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[47.043,-5.782,63.519,70.749,49.002,55.733,54.488,24.592,47.020,5.760,51.329,-6.113,14.768,-4.891,-0.550,61.332,50.373,18.191,72.132,-5.890];\r\ntype='E';\r\nt=[624.20,-112.34,831.98,925.63,648.59,732.98,717.30,345.29,623.92,91.68,677.65,-120.14,218.08,-92.44,-9.45,804.01,665.70,263.21,943.79,-114.85];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[25.973,21.532,51.346,53.651,6.415,29.934,26.504,42.090,46.986,50.505,13.338,44.683,42.772,4.531,1.145,30.602,66.427,18.335,37.350,9.284];\r\ntype='J';\r\nt=[474.55,394.29,891.49,928.64,121.02,545.03,484.08,747.00,823.10,878.13,246.07,787.46,757.73,86.40,22.41,556.74,1145.65,336.32,671.10,173.05];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[39.769,9.613,24.860,36.597,48.255,52.412,27.367,2.534,-3.183,9.760,45.205,9.564,43.599,8.910,50.587,15.380,6.057,9.369,31.550,22.874];\r\ntype='K';\r\nt=[961.54,236.67,598.94,881.84,1184.10,1300.02,658.08,62.37,-88.12,240.30,1102.28,235.46,1060.08,219.23,1248.42,375.87,148.01,230.63,758.12,552.32];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[14.122,38.800,26.153,24.322,43.248,10.732,35.008,34.829,15.604,25.255,-0.083,-1.211,23.348,36.139,44.114,2.701,25.306,20.185,-3.377,13.373];\r\ntype='N';\r\nt=[430.77,1066.23,741.41,694.79,1183.93,338.85,967.76,963.15,470.00,718.55,-3.19,-47.64,669.96,996.99,1207.20,97.51,719.85,589.01,-152.56,410.74];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[17.151,19.094,2.483,19.255,13.262,1.854,5.714,11.438,20.197,20.354,3.136,20.476,20.189,10.1270,16.843,2.800,8.770,19.306,16.671,20.239];\r\ntype='R';\r\nt=[1478.71,1617.68,308.44,1629.33,1202.45,242.54,611.47,1069.68,1698.17,1709.87,373.62,1719.06,1697.57,971.22,1456.86,340.43,865.77,1633.02,1444.67,1701.29];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[12.177,.441,15.837,17.444,12.612,14.108,13.831,7.189,12.172,3.005,13.129,0.368,5.007,0.639,1.604,15.351,12.917,5.767,17.751,0.4170];\r\ntype='S';\r\nt=[1218.81,71.22,1521.24,1656.64,1254.83,1378.19,1355.37,785.61,1218.39,373.28,1297.52,60.47,577.22,99.05,219.12,1480.86,1280.03,651.36,1682.97,67.72];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[6.013,4.499,14.664,15.450,-0.655,7.364,6.194,11.508,13.178,14.378,1.705,12.392,11.741,-1.298,-2.453,7.591,19.807,3.409,9.892,0.322];\r\ntype='T';\r\nt=[136.11,104.70,296.59,310.08,-17.25,163.05,139.77,240.91,270.70,291.65,42.21,256.77,245.11,-34.96,-69.28,167.49,382.72,81.12,211.29,8.27];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));","published":true,"deleted":false,"likes_count":0,"comments_count":5,"created_by":145982,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":3,"test_suite_updated_at":"2021-06-29T02:26:58.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2021-06-23T00:08:21.000Z","updated_at":"2021-06-29T02:26:58.000Z","published_at":"2021-06-23T02:29:21.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eConvert Thermocouples of types (B,E,J,K,N,R,S,T) output junction voltage (in mV) to temperature (in C) using NIST coefficients rounded to the nearest 0.01 C.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\",\"relationship\":null}],\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"target\":\"/matlab/document.xml\",\"relationshipId\":\"rId1\"}]}"}],"problem_search":{"errors":[],"problems":[{"id":52090,"title":"Convert Thermocouple output voltage (in mV) to Temperature (in C)","description":"Convert Thermocouples of types (B,E,J,K,N,R,S,T) output junction voltage (in mV) to temperature (in C) using NIST coefficients rounded to the nearest 0.01 C.","description_html":"\u003cdiv style = \"text-align: start; line-height: 20.44px; min-height: 0px; white-space: normal; color: rgb(0, 0, 0); font-family: Menlo, Monaco, Consolas, monospace; font-style: normal; font-size: 14px; font-weight: 400; text-decoration: none solid rgb(0, 0, 0); white-space: normal; \"\u003e\u003cdiv style=\"block-size: 42px; display: block; min-width: 0px; padding-block-start: 0px; padding-top: 0px; perspective-origin: 407px 21px; transform-origin: 407px 21px; vertical-align: baseline; \"\u003e\u003cdiv style=\"font-family: Helvetica, Arial, sans-serif; line-height: 21px; margin-block-end: 9px; margin-block-start: 2px; margin-bottom: 9px; margin-inline-end: 10px; margin-inline-start: 4px; margin-left: 4px; margin-right: 10px; margin-top: 2px; perspective-origin: 384px 21px; text-align: left; transform-origin: 384px 21px; white-space: pre-wrap; margin-left: 4px; margin-top: 2px; margin-bottom: 9px; margin-right: 10px; \"\u003e\u003cspan style=\"block-size: auto; display: inline; margin-block-end: 0px; margin-block-start: 0px; margin-bottom: 0px; margin-inline-end: 0px; margin-inline-start: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; perspective-origin: 0px 0px; transform-origin: 0px 0px; \"\u003e\u003cspan style=\"\"\u003eConvert Thermocouples of types (B,E,J,K,N,R,S,T) output junction voltage (in mV) to temperature (in C) using NIST coefficients rounded to the nearest 0.01 C.\u003c/span\u003e\u003c/span\u003e\u003c/div\u003e\u003c/div\u003e\u003c/div\u003e","function_template":"function t = thermocoupleVoltage2Temperature(type,v)\r\n  t=v;\r\nend","test_suite":"%%\r\nv =[11.313,12.545,2.009,12.648,8.846,1.611,4.059,7.690,13.245,13.345,2.423,13.422,13.241,6.858,11.118,2.211,5.997,12.680,11.009,13.272];\r\ntype='B';\r\nt=[1604.28, 1709.64,635.52,1718.48,1390.21,568.90,912.07,1285.39,1769.93,1778.60,698.87,1785.28,1769.59,1206.90,1587.60,667.07,1122.10,1721.22,1578.27,1772.27];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[47.043,-5.782,63.519,70.749,49.002,55.733,54.488,24.592,47.020,5.760,51.329,-6.113,14.768,-4.891,-0.550,61.332,50.373,18.191,72.132,-5.890];\r\ntype='E';\r\nt=[624.20,-112.34,831.98,925.63,648.59,732.98,717.30,345.29,623.92,91.68,677.65,-120.14,218.08,-92.44,-9.45,804.01,665.70,263.21,943.79,-114.85];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[25.973,21.532,51.346,53.651,6.415,29.934,26.504,42.090,46.986,50.505,13.338,44.683,42.772,4.531,1.145,30.602,66.427,18.335,37.350,9.284];\r\ntype='J';\r\nt=[474.55,394.29,891.49,928.64,121.02,545.03,484.08,747.00,823.10,878.13,246.07,787.46,757.73,86.40,22.41,556.74,1145.65,336.32,671.10,173.05];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[39.769,9.613,24.860,36.597,48.255,52.412,27.367,2.534,-3.183,9.760,45.205,9.564,43.599,8.910,50.587,15.380,6.057,9.369,31.550,22.874];\r\ntype='K';\r\nt=[961.54,236.67,598.94,881.84,1184.10,1300.02,658.08,62.37,-88.12,240.30,1102.28,235.46,1060.08,219.23,1248.42,375.87,148.01,230.63,758.12,552.32];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[14.122,38.800,26.153,24.322,43.248,10.732,35.008,34.829,15.604,25.255,-0.083,-1.211,23.348,36.139,44.114,2.701,25.306,20.185,-3.377,13.373];\r\ntype='N';\r\nt=[430.77,1066.23,741.41,694.79,1183.93,338.85,967.76,963.15,470.00,718.55,-3.19,-47.64,669.96,996.99,1207.20,97.51,719.85,589.01,-152.56,410.74];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[17.151,19.094,2.483,19.255,13.262,1.854,5.714,11.438,20.197,20.354,3.136,20.476,20.189,10.1270,16.843,2.800,8.770,19.306,16.671,20.239];\r\ntype='R';\r\nt=[1478.71,1617.68,308.44,1629.33,1202.45,242.54,611.47,1069.68,1698.17,1709.87,373.62,1719.06,1697.57,971.22,1456.86,340.43,865.77,1633.02,1444.67,1701.29];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[12.177,.441,15.837,17.444,12.612,14.108,13.831,7.189,12.172,3.005,13.129,0.368,5.007,0.639,1.604,15.351,12.917,5.767,17.751,0.4170];\r\ntype='S';\r\nt=[1218.81,71.22,1521.24,1656.64,1254.83,1378.19,1355.37,785.61,1218.39,373.28,1297.52,60.47,577.22,99.05,219.12,1480.86,1280.03,651.36,1682.97,67.72];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));\r\n%%\r\nv=[6.013,4.499,14.664,15.450,-0.655,7.364,6.194,11.508,13.178,14.378,1.705,12.392,11.741,-1.298,-2.453,7.591,19.807,3.409,9.892,0.322];\r\ntype='T';\r\nt=[136.11,104.70,296.59,310.08,-17.25,163.05,139.77,240.91,270.70,291.65,42.21,256.77,245.11,-34.96,-69.28,167.49,382.72,81.12,211.29,8.27];\r\nassert(isequal(thermocoupleVoltage2Temperature(type,v),t));","published":true,"deleted":false,"likes_count":0,"comments_count":5,"created_by":145982,"edited_by":null,"edited_at":null,"deleted_by":null,"deleted_at":null,"solvers_count":3,"test_suite_updated_at":"2021-06-29T02:26:58.000Z","rescore_all_solutions":false,"group_id":1,"created_at":"2021-06-23T00:08:21.000Z","updated_at":"2021-06-29T02:26:58.000Z","published_at":"2021-06-23T02:29:21.000Z","restored_at":null,"restored_by":null,"spam":false,"simulink":false,"admin_reviewed":false,"description_opc":"{\"parts\":[{\"partUri\":\"/matlab/document.xml\",\"contentType\":\"application/vnd.mathworks.matlab.code.document+xml\",\"content\":\"\u003c?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?\u003e\u003cw:document xmlns:w=\\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\\"\u003e\u003cw:body\u003e\u003cw:p\u003e\u003cw:pPr\u003e\u003cw:pStyle w:val=\\\"text\\\"/\u003e\u003cw:jc w:val=\\\"left\\\"/\u003e\u003c/w:pPr\u003e\u003cw:r\u003e\u003cw:t\u003eConvert Thermocouples of types (B,E,J,K,N,R,S,T) output junction voltage (in mV) to temperature (in C) using NIST coefficients rounded to the nearest 0.01 C.\u003c/w:t\u003e\u003c/w:r\u003e\u003c/w:p\u003e\u003c/w:body\u003e\u003c/w:document\u003e\",\"relationship\":null}],\"relationships\":[{\"relationshipType\":\"http://schemas.mathworks.com/matlab/code/2013/relationships/document\",\"target\":\"/matlab/document.xml\",\"relationshipId\":\"rId1\"}]}"}],"term":"tag:\"thermocouple\"","current_player_id":null,"fields":[{"name":"page","type":"integer","callback":null,"default":1,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":null,"static":null,"prepend":true},{"name":"per_page","type":"integer","callback":null,"default":50,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":null,"static":null,"prepend":true},{"name":"sort","type":"string","callback":null,"default":null,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":null,"static":null,"prepend":true},{"name":"body","type":"text","callback":null,"default":"*:*","directive":null,"facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":false},{"name":"group","type":"string","callback":null,"default":null,"directive":"group","facet":true,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"difficulty_rating_bin","type":"string","callback":null,"default":null,"directive":"difficulty_rating_bin","facet":true,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"id","type":"integer","callback":null,"default":null,"directive":"id","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"tag","type":"string","callback":null,"default":null,"directive":"tag","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"product","type":"string","callback":null,"default":null,"directive":"product","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"created_at","type":"timeframe","callback":{},"default":null,"directive":"created_at","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"profile_id","type":"integer","callback":null,"default":null,"directive":"author_id","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"created_by","type":"string","callback":null,"default":null,"directive":"author","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"player_id","type":"integer","callback":null,"default":null,"directive":"solver_id","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"player","type":"string","callback":null,"default":null,"directive":"solver","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"solvers_count","type":"integer","callback":null,"default":null,"directive":"solvers_count","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"comments_count","type":"integer","callback":null,"default":null,"directive":"comments_count","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"likes_count","type":"integer","callback":null,"default":null,"directive":"likes_count","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"leader_id","type":"integer","callback":null,"default":null,"directive":"leader_id","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true},{"name":"leading_solution","type":"integer","callback":null,"default":null,"directive":"leading_solution","facet":null,"facet_method":"and","operator":null,"param":"term","static":null,"prepend":true}],"filters":[{"name":"asset_type","type":"string","callback":null,"default":null,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":null,"static":"\"cody:problem\"","prepend":true},{"name":"profile_id","type":"integer","callback":{},"default":null,"directive":null,"facet":null,"facet_method":"and","operator":null,"param":"author_id","static":null,"prepend":true}],"query":{"params":{"per_page":50,"term":"tag:\"thermocouple\"","current_player":null,"sort":"map(difficulty_value,0,0,999) asc"},"parser":"MathWorks::Search::Solr::QueryParser","directives":{"term":{"directives":{"tag":[["tag:\"thermocouple\"","","\"","thermocouple","\""]]}}},"facets":{"#\u003cMathWorks::Search::Field:0x00007f32629bca80\u003e":null,"#\u003cMathWorks::Search::Field:0x00007f32629bc9e0\u003e":null},"filters":{"#\u003cMathWorks::Search::Field:0x00007f32629bc120\u003e":"\"cody:problem\""},"fields":{"#\u003cMathWorks::Search::Field:0x00007f32629bcd00\u003e":1,"#\u003cMathWorks::Search::Field:0x00007f32629bcc60\u003e":50,"#\u003cMathWorks::Search::Field:0x00007f32629bcbc0\u003e":"map(difficulty_value,0,0,999) asc","#\u003cMathWorks::Search::Field:0x00007f32629bcb20\u003e":"tag:\"thermocouple\""},"user_query":{"#\u003cMathWorks::Search::Field:0x00007f32629bcb20\u003e":"tag:\"thermocouple\""},"queried_facets":{}},"query_backend":{"connection":{"configuration":{"index_url":"http://index-op-v2/solr/","query_url":"http://search-op-v2/solr/","direct_access_index_urls":["http://index-op-v2/solr/"],"direct_access_query_urls":["http://search-op-v2/solr/"],"timeout":10,"vhost":"search","exchange":"search.topic","heartbeat":30,"pre_index_mode":false,"host":"rabbitmq-eks","port":5672,"username":"cody-search","password":"78X075ddcV44","virtual_host":"search","indexer":"amqp","http_logging":"true","core":"cody"},"query_connection":{"uri":"http://search-op-v2/solr/cody/","proxy":null,"connection":{"parallel_manager":null,"headers":{"User-Agent":"Faraday v1.0.1"},"params":{},"options":{"params_encoder":"Faraday::FlatParamsEncoder","proxy":null,"bind":null,"timeout":null,"open_timeout":null,"read_timeout":null,"write_timeout":null,"boundary":null,"oauth":null,"context":null,"on_data":null},"ssl":{"verify":true,"ca_file":null,"ca_path":null,"verify_mode":null,"cert_store":null,"client_cert":null,"client_key":null,"certificate":null,"private_key":null,"verify_depth":null,"version":null,"min_version":null,"max_version":null},"default_parallel_manager":null,"builder":{"adapter":{"name":"Faraday::Adapter::NetHttp","args":[],"block":null},"handlers":[{"name":"Faraday::Response::RaiseError","args":[],"block":null}],"app":{"app":{"ssl_cert_store":{"verify_callback":null,"error":null,"error_string":null,"chain":null},"app":{},"connection_options":{},"config_block":null}}},"url_prefix":"http://search-op-v2/solr/cody/","manual_proxy":false,"proxy":null},"update_format":"RSolr::JSON::Generator","update_path":"update","options":{"url":"http://search-op-v2/solr/cody"}}},"query":{"params":{"per_page":50,"term":"tag:\"thermocouple\"","current_player":null,"sort":"map(difficulty_value,0,0,999) asc"},"parser":"MathWorks::Search::Solr::QueryParser","directives":{"term":{"directives":{"tag":[["tag:\"thermocouple\"","","\"","thermocouple","\""]]}}},"facets":{"#\u003cMathWorks::Search::Field:0x00007f32629bca80\u003e":null,"#\u003cMathWorks::Search::Field:0x00007f32629bc9e0\u003e":null},"filters":{"#\u003cMathWorks::Search::Field:0x00007f32629bc120\u003e":"\"cody:problem\""},"fields":{"#\u003cMathWorks::Search::Field:0x00007f32629bcd00\u003e":1,"#\u003cMathWorks::Search::Field:0x00007f32629bcc60\u003e":50,"#\u003cMathWorks::Search::Field:0x00007f32629bcbc0\u003e":"map(difficulty_value,0,0,999) asc","#\u003cMathWorks::Search::Field:0x00007f32629bcb20\u003e":"tag:\"thermocouple\""},"user_query":{"#\u003cMathWorks::Search::Field:0x00007f32629bcb20\u003e":"tag:\"thermocouple\""},"queried_facets":{}},"options":{"fields":["id","difficulty_rating"]},"join":" "},"results":[{"id":52090,"difficulty_rating":"medium"}]}}