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
?????? = 35.7 + 0.6?? ? 35.7(??0.16) + 0.43??(??0.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 the top.PLEASE SHOW OUTPUT THANKYOU