create an array with an output from a loop

29 views (last 30 days)
Daniel Lee
Daniel Lee on 28 Oct 2020
Answered: Rishabh Mishra on 6 Nov 2020
Is there a way to create an entirely new array with an output from a loop?
For example:
  • If a condition is met, increase or decrease N by 1
  • Repeat 1000 times
  • Example result: N = 1,2,3,2,1,2,3,4,3,2,3,4,5,4....
  • Then, create an array size 1x1000 with resulting N values at each iteration.
  • So, final output should be M = [1,2,3,2,1,2,3,4,3,2,3,4,5,4,...]
Thank you
  3 Comments
Daniel Lee
Daniel Lee on 28 Oct 2020
I modified the question a bit.. does that make a better sense? sorry, Matlab newbie here
Rik
Rik on 28 Oct 2020
Where I had posted a comment:
You can avoid a loop if you can find a way to figure out when each customer is leaving. If you manage that, you can mark those times with -1, mark all times where a customer arrives with 1, after which you can use cumsum to generate the N array for all times.
This looks a bit like homework. You can find guidelines for posting homework on this forum here. If you have trouble with Matlab basics you may consider doing the Onramp tutorial (which is provided for free by Mathworks).
Daniel, please don't delete questions if you get a response.

Sign in to comment.

Answers (1)

Rishabh Mishra
Rishabh Mishra on 6 Nov 2020
Hi,
Try out the code given below. I have mentioned appropriate comments to help you get through the code.
% N is the looping variable
N = 1;
% j is used to store value in array
j = 1;
% value of j remains between low & hi
% low & hi are changed within loop as per the description given
low = 1;
hi = 3;
% array to store the required values
arr = [];
% loops & conditional statements
while(N <= 1000)
if j <= hi
arr(N) = j;
j = j+1;
N = N+1;
else
j = j-2;
while(j >= low)
arr(N) = j;
j = j-1;
N = N+1;
low = low+1;
hi = hi+1;
end
end
end
Hope this helps.

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!