vector addition in a single row

2 vues (au cours des 30 derniers jours)
PK
PK le 28 Sep 2012
for a constant w=2 a matrix is to be generated by incrementing it as many times and save it in another matrix as the following way out=[w+1 w+2 w+3 w+4.......]
  1 commentaire
Jan
Jan le 28 Sep 2012
Please post what you have tried so far and which problems occurred.

Connectez-vous pour commenter.

Réponse acceptée

Sabarinathan Vadivelu
Sabarinathan Vadivelu le 28 Sep 2012
w = 2;
N = 10; % N value may be anything as the length u need..
for i = 1 : N
out(i)=[w+i];
end
  1 commentaire
Jan
Jan le 28 Sep 2012
Please do not answer homework questions.
A pre-allocation would be more efficient. Otherwise "out" grows in each iteration, which wastes a lot of time - for larger arrays.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by