Azzera filtri
Azzera filtri

creating a matrix from vector

2 visualizzazioni (ultimi 30 giorni)
Aleksandra Ksiezyk
Aleksandra Ksiezyk il 28 Ago 2020
Commentato: madhan ravi il 28 Ago 2020
hej i have a vector Ta [12x1] and k [12x1] i would like to create a matrix [12,31] where the first column is Ta the second is Ta+k, the third is Ta+2k and so on till the end. can anyone help me with it or give any tip/hint

Risposta accettata

madhan ravi
madhan ravi il 28 Ago 2020
Modificato: madhan ravi il 28 Ago 2020
Ta(:) + (k(:).' .* (1:31))
%Or
bsxfun(@plus, Ta(:), bsxfun(@times, k(:).', 1:31))
  2 Commenti
Aleksandra Ksiezyk
Aleksandra Ksiezyk il 28 Ago 2020
Test = Ta + (k .* (1:31)) - works perfectly... thank you a lot... i overthink and i started to writing some strange for loops
madhan ravi
madhan ravi il 28 Ago 2020
By the way don’t ask the same question multiple times.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su MATLAB 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