Part 1. MATLAB Programming The wind chillfactor measures how cold it feels with a given air temperature T(in degrees Fahrenheit) and wind speed (V, in miles per hour). Theformula is approximately
WCF = 35.7 + 0.6T ? 35.7(V0.16) + 0.43T(V0.16)
a). Write a function that will calculate the wind chill factor(WCF) given temperature and wind speed. Your function should rounddown to the nearest integer.
b). Write a script that will use the function above to create atable of wind chill factors, similar to the one shown athttps://en.wikipedia.org/wiki/Wind_chill#/media/File:Wind_chill.png.Wind speed should be down the left and temperature across thetop.
Please show output if possible Thanks