Hi there,
I had asked a question earlier and someone had given me the link to a documentation which was very helpful but it doesnt help with the current issue. I have a list with 21 students' names, student numbers, their 4 lab marks 1 midterm mark and 4 exam question marks. We are asked to add a row that has my name student number and rest of the marks. How do we do this? I searched found only matrix answers. Which syntax should we use for this?

 채택된 답변

Image Analyst
Image Analyst 2021년 9월 28일

0 개 추천

What form is the "list" in? A table (hopefully)?
rows = height(t);
t(rows+1).name = "Abdullah";
t(rows+1).studentNumber = 1234;
A cell array?
rows = height(ca);
ca{rows+1, 1} = "Abdullah";
ca{rows+1, 2} = 1234;

댓글 수: 2

Abdullah AYYILDIZ
Abdullah AYYILDIZ 2021년 9월 28일
Okay the first one helped !! Thanks a lot Image Analyst!
Image Analyst
Image Analyst 2021년 9월 28일
You're welcome. Can you then mark the Answer as "Accepted"? Thanks in advance.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Downloads에 대해 자세히 알아보기

태그

질문:

2021년 9월 28일

댓글:

2021년 9월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by