How to separate a number in 5 in for loop
1 view (last 30 days)
Show older comments
Let’s say we have a for loop for y, y=0:10
the second for loop is x=0:y
I want x separate in 5 to each y
For example, for y=1, x1=0.2,x2=0.4....x5=1; for y=2,x1=0.4.....x5=2
0 Comments
Accepted Answer
Walter Roberson
on 4 Oct 2018
x1 = 0.2 * y;
x2 = 0.4 * y;
x3 = 0.6 * y;
x4 = 0.8 * y;
x5 = 1.0 * y;
But consider
x = (0.2:0.2:1) * y;
More Answers (0)
See Also
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!