Write a function that takes an interval from a to b, and divides it into 5 parts
example:
a = 1, b = 2
output = 1 1.25 1.5 1.75 2
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers330
Suggested Problems
-
Flip the main diagonal of a matrix
914 Solvers
-
Compute a dot product of two vectors x and y
1053 Solvers
-
Convert a vector into a number
618 Solvers
-
Remove the two elements next to NaN value
709 Solvers
-
Calculate the area of a triangle between three points
3516 Solvers
More from this Author28
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The interval is split in 4 parts, not 5! There are five points in total then...