create vector from 21 individual values from for-loop

1 visualizzazione (ultimi 30 giorni)
aet
aet il 10 Giu 2019
Commentato: aet il 10 Giu 2019
I have 21 values for K from my for-loop and need to makes these values into a vector. The end goal is to make a box plot. Any guidance?

Risposte (1)

Jan
Jan il 10 Giu 2019
K = zeros(1, 21); % Pre-allocation
for ii = 1:21
K(ii) = rand; % Insert your calculations here
end
If you post your code, a more matching answer is possible.
  3 Commenti

Accedi per commentare.

Categorie

Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by