Need help displaying an output file for data.

2 views (last 30 days)
I have to write a MATLAB script (code) that reads an input file containing all the scores of 30 students and assign them their letter grade. I already have everything set up to give the correct letter grade i just need to open a new file to display it on.
This is what I have...
grade= xlsread('gradesexcel');
data.grade = discretize(grade,...
[.50, .60, .70, .80, .90, 1.00],...
'categorical',...
{'F','D','C','B','A'});
thank you

Accepted Answer

Star Strider
Star Strider on 13 Dec 2019
I have no idea what you want to do.
However if you create a table of your results, writetable could do what you want.
  4 Comments

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!