Given an integer factor f and a range defined by xlow and xhigh inclusive, return a vector of the multiples of f that fall in the specified range.
Example:
f = 10;
xlow = 35;
xhigh = 112;
multiples = bounded_multiples(f, xlow, xhigh);Outputs
multiples = [ 40 50 60 70 80 90 100 110 ];
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers944
Suggested Problems
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
2053 Solvers
-
Compute a dot product of two vectors x and y
1053 Solvers
-
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
2114 Solvers
-
Natural numbers in string form
1942 Solvers
-
2671 Solvers
More from this Author56
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I'd suggest adding test cases in which xlow<0 (and maybe also xhigh<0).