Menu

(Solved) : Q3 Build Equation Extracts Run Parameters Given List File Names Stored Strings Run Repres Q44039613 . . .

Q3 Build an equation that extracts the run parameters from thegiven
# list of file names (stored as strings).

# – Each “run” is represented by a string.
# – Your equation should take individual strings as an input.
# – Your equation should return a value for alpha and a value forthe
# temperature.
# – These values should be returned as floats.
#=============================================================================
file_names = [‘alpha_1.1mm_temp_220K.csv’,
‘alpha_1.3mm_temp_230K.csv’,
‘alpha_1.5mm_temp_240K.csv’,
‘alpha_1.3mm_temp_250K.csv’,
‘alpha_1.7mm_temp_260K.csv’,
‘alpha_1.7mm_temp_270K.csv’,
‘alpha_1.8mm_temp_280K.csv’,
‘alpha_1.9mm_temp_290K.csv’,
‘alpha_1.11mm_temp_300K.csv’,
‘alpha_1.12mm_temp_310K.csv’,
‘alpha_1.11mm_temp_320K.csv’,
‘alpha_1.13mm_temp_330K.csv’,
‘alpha_1.14mm_temp_340K.csv’,
‘alpha_1.16mm_temp_350K.csv’,
‘alpha_1.17mm_temp_360K.csv’,
‘alpha_1.19mm_temp_370K.csv’]

# parse the string to get desired values as “float” type’s
# function name: parse_string

This is in python

Expert Answer


Answer to Q3 Build an equation that extracts the run parameters from the given # list of file names (stored as strings). # – Each …

OR