Getting output as an array from while loop
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MAzharul Islam
le 18 Mai 2020
Commenté : MAzharul Islam
le 19 Mai 2020
clc
clear all
a=0;
x = input('Enter the number : ')
while x<100
%%example code
if rem(x,2)==0
x=x+2;
else
x=x+1;
end
a=a+1;
format long
b=[a x]
end
c=[1 20; 2 22; 3 24]
I want the output of b as a 2 dimensional array where all the values a and x will be existed as like c.
0 commentaires
Réponse acceptée
Sulaymon Eshkabilov
le 18 Mai 2020
Here is one of the viable solutions:
a=0;
x = input('Enter the number : ')
ii=0;
while x<100
ii=ii+1;
if rem(x,2)==0
x=x+2;
else
x=x+1;
end
a=a+1;
format long
b(ii,:)=[a x]
end
Plus de réponses (0)
Voir également
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!