Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How to put all the values of a for loop in a vector?

1 Ansicht (letzte 30 Tage)
Delshad Ayoubi
Delshad Ayoubi am 13 Okt. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I want D_N to get another value in each loop and then put that value in a vector, T amount of times. Basically, I want to be able to go through the script an T amount of times and each time D_N will get another value and then put it into a vector. How do I do this?
clear
clc
N = 100;
M = 2000;
B = zeros(M,N);
for m=1:M
x_t(1) = 0;
for n = 1:N
A = sign(randn);
x_t(n+1) = x_t(n) + A;
B(m,n) = x_t(n);
end
hold on
end
C = B(:,end);
D = C.^2;
D_N = sqrt(mean((D)))

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by