Storing values from a for loop
Show older comments
I'd like to store multiple values from my for loop, though it only saves the last values. How do I rewrite the code to make it save all values? Here is what I have so far.
CustAmt = input('How many customers would you like to examine?: ');
for x = 1:CustAmt
Cust(x).name = input('What is the name of this customer?: ','s');
Cust(x).pamt = input('How many products do you sell to this customer?: ');
monall = [];
for y = 1:Cust(x).pamt
product = input('What is the name of this product?: ','s');
fprintf('How much money is allocated for %s?',product);
monall = [monall, input(': ')];
end
end
I would like to save each input value for each customer.
6 Comments
Walter Roberson
on 24 Apr 2019
Cust(x).monall = monall;
Rylan Thronburg
on 24 Apr 2019
Walter Roberson
on 25 Apr 2019
After the for y loop but before the end of the for x loop.
Rylan Thronburg
on 25 Apr 2019
Walter Roberson
on 25 Apr 2019
Edited: Walter Roberson
on 25 Apr 2019
Works for me. See attached.
Rylan Thronburg
on 25 Apr 2019
Answers (1)
Murugan C
on 4 Jun 2019
Hi,
CustAmt = input('How many customers would you like to examine?: ');
for x = 1:CustAmt
Cust(x).name = input('What is the name of this customer?: ','s');
Cust(x).pamt = input('How many products do you sell to this customer?: ');
monall = [];
prodnames = [];
for y = 1:Cust(x).pamt
product = input('What is the name of this product?: ','s');
fprintf('How much money is allocated for %s?',product);
prodnames = [prodnames, {product}]; monall = [monall, input(': ')];
end
Cust(x).prodnames = prodnames;
Cust(x).monall = monall;
save(Cust(x).name,'Cust') % store the variable into .mat data
end
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!