フィルターのクリア

I have got a set of data; one column is for wind(mph) another column one is for temperature(in Fahrenheit). using the wind chill factor formula i want to find out the WCF for each tempetaure and wind

1 回表示 (過去 30 日間)
rihan jericho
rihan jericho 2018 年 1 月 23 日
編集済み: Jan 2018 年 1 月 31 日
For example Wind= 5, 15, 20 temperature = 30, 35, 20 WCF=(formula) for each temperature and velocity ,i want matlab to store WCF by using the wcf formula in another column. But its giving me an error. But when i use a single value for T and V, it calculates WCF using the formula and gives me the result. but i want to do it for all sets of data and all at once.
  2 件のコメント
RobF
RobF 2018 年 1 月 23 日
編集済み: RobF 2018 年 1 月 23 日
Please provide the formula you want to use as well as the units for measuring wind speed and temperature.
Jan
Jan 2018 年 1 月 31 日
@rihan jericho, Md Epu, Joe Raihan or like you rename your account: Please stop deleting your questions, because this insults the members, who spent time to help you.

サインインしてコメントする。

回答 (1 件)

RobF
RobF 2018 年 1 月 23 日
編集済み: RobF 2018 年 1 月 23 日
This should do the job:
WCF = 35.7 + 0.6.*T - 35.7.*(V.^0.16) + 0.43.*T.*V.^0.16
where V in mph and T in deg Fahrenheit. Caution: Windchill temperature is defined only for temperatures at or below 10 °C (50 °F) and wind speeds above 4.8 kilometres per hour (3.0 mph).
https://en.wikipedia.org/wiki/Wind_chill

カテゴリ

Help Center および File ExchangeMATLAB Parallel Server についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by