write a for loop to round up vector

1 vue (au cours des 30 derniers jours)
jarvan
jarvan le 1 Nov 2014
Commenté : jarvan le 1 Nov 2014
i have a vector = [123.231 232.123 123.565 123.543] I need to use for loop to give out an result as:
number 1 is 123.2 number 2 is 232.1 number 3 is 123.6 number 4 is 123.5
which is round up to 1 decimal place.
Here I got:
vec = [1.111 2.222 3.222 4.222];
for i=1:length(vec)
fprintf('Element %d is %5.1f \n',i,vec)
end
I cant see what's wrong with my code but it wasnt display want i need. Could anyone help me out? Thanks

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 1 Nov 2014
Modifié(e) : Azzi Abdelmalek le 1 Nov 2014
you forget to use vec(i) instead of vec
vec = [1.111 2.222 3.222 4.222];
for i=1:length(vec)
fprintf('Element %d is %5.1f \n',i,vec(i))
end
  1 commentaire
jarvan
jarvan le 1 Nov 2014
it runs perfect right now. thanks!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by