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

2 visualizzazioni (ultimi 30 giorni)
how can I generate a vector with values 1,1/2,1/3...1/10?

Risposta accettata

Guillaume
Guillaume il 21 Lug 2019
v = 1 ./ (1:10)
  6 Commenti
Guillaume
Guillaume il 21 Lug 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 il 21 Lug 2019
Sorry, I was mistaking with spaces between characters..:/ all answers work. Thank you everyone!!

Accedi per commentare.

Più risposte (1)

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

Categorie

Scopri di più su Function Creation in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by