Vector with numerator 1 unit less than denominator

2 views (last 30 days)
How can I make a vector with these values?
0, 1/2, 2/3, 3/4, 4/5, 5/6, 6/7, 7/8, 8/9, 9/10

Answers (1)

Raj
Raj on 3 Feb 2020
format rat
A=input('Enter number of elements:') % Enter 10 for this example
for ii=1:A
Out_Vector(ii)= (ii-1)/ii;
end
Out_Vector
  3 Comments
Raj
Raj on 3 Feb 2020
Sorry. Didn't realize it was a homework problem.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!