Store values from a for loop into a matrix

4 vues (au cours des 30 derniers jours)
Jo E.
Jo E. le 22 Sep 2019
Modifié(e) : Jo E. le 22 Sep 2019
Hello all, if anyone could possibly help me I would greatly appreciate it. I am attempting to store values calculated in a for loop in a matrix. I have already tried to preallocate arrays and create an empty matrix but just cant seem to get it to work.
The matrix would be [65x3] because there are 3 conditions and 65 participants. The for loop calculates one condition from one participant at a time.
for RARs = zeros(65, 3)
i = 1:65;
RARatio = AUC/RA;
disp(RARatio)
% RAR Matrix
RARmat(RARs, :) = RARatio;
end
Thank you in advance!

Réponse acceptée

madhan ravi
madhan ravi le 22 Sep 2019
RARmat = zeros(65, 3)
for ii = 1:65
RARatio = AUC/RA;
disp(RARatio)
% RAR Matrix
RARmat(ii, :) = RARatio;
end
  11 commentaires
madhan ravi
madhan ravi le 22 Sep 2019
You would be better off starting a new question (also link this thread to that question), so that you get a help soon.
Jo E.
Jo E. le 22 Sep 2019
Will do. Thank you for your help.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing 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