Plotting values from a set of nested if-else statements in while loop nested in a for loop
Afficher commentaires plus anciens
The code below produces a plot 1000 by 1000 and my goal is to plot each value of length after it iterates through the while loop. what ends up happening here is my function only returns the last value of length.
the purpose of the function is to retrieve to length of each sequence: s(n) = s(n-1)/2 if s(n-1) > 1 and even
s(n) = 3*s(n-1) + 1 if s(n-1) > 1 and odd
If i remove the comments i can loop through 1000 times and have the value of length printed each time, but i need to store that value in order to plot it(i think).
Any help would be appreciated
%%%%%%%%%%%%%%%%%%%%%%
v = 1:1000;
plot(v,xyz(v),'r+-');
%axes' bounds and labels
axis([0 1000 0 1000]);
xlabel('s(x)');
ylabel('Length of s(x)');
%Title
title('XYZ Sequence');
function [length] = xyz(v)
your_int = 1;
count = 1;
for x_= v
length = 1;
your_int = your_int * count;
while( your_int ~= 1) %length of sequence is retrieved when your_int = 1
%fprintf("\nYour integer = %10d", your_int);
%un_comment the line above to see each number in the sequence
if( mod(your_int, 2) == 0)
your_int = your_int / 2; %s(n) = s(n-1)/2 if s(n-1) > 1 and even
else
your_int = 3*your_int + 1; %s(n) = 3s(n-1) + 1 if s(n-1) > 1 and odd
end
length = length + 1; %length of the sequence
end
count = count + 1; %multiply by your_int to increment
%fprintf("\n\tThe length of s(%4d) is %4d", (count-1), length);
%un_comment the line above to see the value of length after each for loop iteration
end
end
Réponse acceptée
Plus de réponses (1)
V = 1:1000;
N = numel(V);
L = ones(1,N); % preallocate output array.
for k = 1:N
s = V(k);
while s>1
if mod(s,2) % odd
s = 3*s + 1;
else % even
s = s/2;
end
L(k) = L(k)+1;
end
end
Giving:
>> L(1:10)
ans =
1 2 8 3 6 9 17 4 20 7
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!