How to find out the impact of independents variables on dependent variable?

3 Ansichten (letzte 30 Tage)
Hi all! I have 365 values of evapotranspiration and 365 values of temperature, solar radiation, relative humidity and wind speed which i used them to calculate the evapotranspiration. i need to know which one of these four variables affects more the evapotranspiration.. is anyone to know how to do it..?
  2 Kommentare
darova
darova am 14 Mai 2019
What this quiestion has in common with MATLAB? You didn't attach any formulas

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Andrei Bobrov
Andrei Bobrov am 14 Mai 2019
Let A - array of your data (365 x 5) : evapotranspiration, temperature, solar radiation, relative humidity and wind speed
c = corrcoef(A);
c = c(:,1);
[out,ii] = max(c(2:end));

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by