how to import average and maximum data from excel sheet .
조회 수: 1 (최근 30일)
이전 댓글 표시
Engineer Batoor khan mummand
2020년 10월 20일
댓글: Sudhakar Shinde
2020년 10월 22일
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
댓글 수: 0
채택된 답변
Sudhakar Shinde
2020년 10월 20일
편집: Sudhakar Shinde
2020년 10월 20일
[~,Num,Data]=xlsread('solar02.xlsx');
%Average values greater than zero
Average = mean(Data(2:end,3)>0);
%Maximum
max(Average);
댓글 수: 12
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!