Find the attachment of the xls file that has the student ID, Name, Branch and others ( total 7 coloums )

1 次查看(过去 30 天)
I have written the matlab code already those who got less than 75% of attendance for the given attached excel file. What actually I need is the Ht No, Student Name and average which should be displayed in the another excel sheet those who got less than 75% of attendance?

采纳的回答

KL
KL 2018-3-2
编辑:KL 2018-3-2
If you're using tables, store your filtered data in a new table and use writetable
T = your_actual_table;
T_filtered = T(T.AttendencePercent>=0.75,{'No','Name','Average'});
writetable(T_filtered, filename)
  8 个评论

请先登录,再进行评论。

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by