Analysing Rain data in matlab
이전 댓글 표시
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개)
카테고리
도움말 센터 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!