accessing and writing for loop for struct array
16 次查看(过去 30 天)
显示 更早的评论
ı have created a struct array with 3 level student.name student.score student.letter
ı have the information of the name and the scores of the students but ı have to write a for loop to assıgn letter grades (a-f) to as a third field. Howver, ı cannot reach into the struct of the array, what can I do?
0 个评论
采纳的回答
KSSV
2016-11-5
Let there be 5 students with the below grades.
grades = {'a' 'c' 'e' 'f' 'b'} ;
for i = 1:length(student)
student(i) = grades{i} ;
end
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!