Я хочу создать структуру внутри структуры в Octave. Это выглядит как
class =
{
grade = Graduate
studentname = John
university = St. Jones
student=
{
name=John
age=18
address=Houston
}
}
Чтобы реализовать эту структуру в структуре, я записываю
>> class.grade='graduate';
>> class.studentname='John';
>> class.university='St.Jones';
>> student.name='John';
>> student.age=18;
>> student.address='Houston';
>>student.class=struct %To create structure within a structure
Я получил такой вывод:
student =
scalar structure containing the fields:
name = John
age = 18
address = Houstan
class =
scalar structure containing the fields:
Я не могу понять, почемуструктура класса здесь пуста? То же самое верно, если я попытаюсь запустить этот код следующим образом
>> class.student=struct
Вывод будет
class =
scalar structure containing the fields:
grade = graduate
studentname = John
university = St.Jones
student =
scalar structure containing the fields:
Пожалуйста, помогите мне решить мою проблему.