How can I make a vector divide 1 by increasing numbers?

2 views (last 30 days)
how can I generate a vector with values 1,1/2,1/3...1/10?

Accepted Answer

Guillaume
Guillaume on 21 Jul 2019
v = 1 ./ (1:10)
  6 Comments
Guillaume
Guillaume on 21 Jul 2019
No, that only gives me a value of 10.
You could at the very least try the answers you are given, otherwise we're not going to go very far...
Seba.V
Seba.V on 21 Jul 2019
Sorry, I was mistaking with spaces between characters..:/ all answers work. Thank you everyone!!

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 21 Jul 2019
i = 1;
while i <= 10
v(i) = 1./i;
i = i + 1;
end

Categories

Find more on Function Creation 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!