assign op values from matrix

1 Ansicht (letzte 30 Tage)
Turbulence Analysis
Turbulence Analysis am 23 Jan. 2021
Hi all
Is there a way to assign for loop values from the matrix
for e.g. for i = x:y, here the value of x and y needs to be assigned rom the values present in the matrix, lets say A.. Is there a way to do this ??

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 23 Jan. 2021
Sure.
x = randi([0 1], 1, 50);
disp(char('0'+x))
01101000011010001111111000000111000001001001000011
locs = find(x)
locs = 1×21
2 3 5 10 11 13 17 18 19 20 21 22 23 30 31 32 38 41 44 49 50
for i = locs(13) : locs(17)-1
fprintf('x(%d) = %d\n', i, x(i));
end
x(23) = 1 x(24) = 0 x(25) = 0 x(26) = 0 x(27) = 0 x(28) = 0 x(29) = 0 x(30) = 1 x(31) = 1 x(32) = 1 x(33) = 0 x(34) = 0 x(35) = 0 x(36) = 0 x(37) = 0
  5 Kommentare
Walter Roberson
Walter Roberson am 23 Jan. 2021
A = [10:19, 120:150, 238:247];
mask = diff(A) == 1;
starts = A(strfind([0 mask], [0 1]));
for sequence = 1 : length(starts)
for i = starts(sequence)-5:starts(sequence)+5
do some calculations
end
filename = sprintf('results_%03d.mat', sequence);
save(filename, 'AppropriateVariable')
end
Turbulence Analysis
Turbulence Analysis am 23 Jan. 2021
Thanks a lot Walter.. It's serving the purpose perfectly

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by