Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

For-loop in Matlab

2 vues (au cours des 30 derniers jours)
Sergey Dukman
Sergey Dukman le 16 Mai 2015
Clôturé : MATLAB Answer Bot le 20 Août 2021
Hei!
I have the following for-loop:
for c=(1:10)
x=sind(c)
end
disp(x)
How can I get all values of x as a row vector? Matlab gives me values of x separately from each other. I want to combine them all together.
Sergey
  2 commentaires
Radmilka
Radmilka le 16 Mai 2015
for c=(1:10)
x(c)=sind(c);
end
disp(x)
Sergey Dukman
Sergey Dukman le 16 Mai 2015
Hei!
Thank you!
best regards, Sergey Dukman

Réponses (1)

Nobel Mondal
Nobel Mondal le 16 Mai 2015
Modifié(e) : Nobel Mondal le 16 Mai 2015
You don't even need a for loop
c = 1:10;
x = sind(c);

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by