How to create a structure which accepts 2 integer arrays?

1 view (last 30 days)
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

Accepted Answer

Image Analyst
Image Analyst on 7 Sep 2015
Before the "end" put
i = i + 1;

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!