Analysing Rain data in matlab
2 ビュー (過去 30 日間)
古いコメントを表示
I have an excel stream of 3 years anual rainfall data with 1 minute integration time and i want to obtain the average rain rate, rain attenuation and rainfall trends
1 件のコメント
Sam Chak
2022 年 3 月 28 日
Hi @Highzik
I think you can try loading the rainfall data into the raindata array in MATLAB Workspace.
filename = 'rainfall.xlsx';
raindata = importdata(filename);
You can also try creating a table from the Excel file, so that you can looking into the displayed data in tabular form.
raintable = readtable(filename)
Next, try providing the formulas for average rain rate, rain attenuation and rainfall trends.
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Export to MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!