How to create a structure which accepts 2 integer arrays?
显示 更早的评论
I want to create one structure named peer which accepts integer array of records 1)value 2)Age?
So, how can I declare the structure? How can I accept an input for n entries?
FYI my code
i=1
n= no of nodes
while (i<=n)
valprompt = 'Enter the value of Node?';
peer(i).value=input(valprompt);
ageprompt = 'Enter the age of Node?';
peer(i).age=input(ageprompt);
end
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Time Series Events 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!