clear student % 清除 student 變數 student.name = '洪鵬翔'; % 加入 name 欄位 student.id = 'mr871912'; % 加入 id 欄位 student.scores = [58, 75, 62]; % 加入 scores 欄位 % 以下是新加入的第二筆資料 student(2).name = '邱中人'; student(2).id = 'mr872510'; student(2).scores = [25, 36, 92]; student % 秀出結果