assign op values from matrix

1 vue (au cours des 30 derniers jours)
Turbulence Analysis
Turbulence Analysis le 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 ??

Réponse acceptée

Walter Roberson
Walter Roberson le 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 commentaires
Walter Roberson
Walter Roberson le 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 le 23 Jan 2021
Thanks a lot Walter.. It's serving the purpose perfectly

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements 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