how to import average and maximum data from excel sheet .

1 vue (au cours des 30 derniers jours)
Engineer Batoor khan mummand
Commenté : Sudhakar Shinde le 22 Oct 2020
hi all:
i want to import avarege data of each day from above excel file but avarege of that values which is greater than 0.
second i want find greatest average value day in that excel file .
thanks

Réponse acceptée

Sudhakar Shinde
Sudhakar Shinde le 20 Oct 2020
Modifié(e) : Sudhakar Shinde le 20 Oct 2020
[~,Num,Data]=xlsread('solar02.xlsx');
%Average values greater than zero
Average = mean(Data(2:end,3)>0);
%Maximum
max(Average);
  12 commentaires
Engineer Batoor khan mummand
Done thank u so much dear from your helping and support.
Sudhakar Shinde
Sudhakar Shinde le 22 Oct 2020
Welcome. glad to help.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by