Effacer les filtres
Effacer les filtres

how to enter values to array using loop

5 vues (au cours des 30 derniers jours)
tomer polsky
tomer polsky le 17 Mar 2017
Réponse apportée : aisha le 17 Oct 2023
hello , I want to make a loop for exmpale from 1:1:100 and then enter each number into an array of each number of array . for exmpale my program is :
clc;
clear all;
k=1;
DC=input('enter DC:');
for DC=DC:1:100
disp(DC)
end
if(k==1)
arr=zeros(100,9);
end
if (k>0 && k<100)
arr(k)=DC;
end
when I run this script only the last value saves in the array . how can i save all the values of the loops ?

Réponse acceptée

KSSV
KSSV le 17 Mar 2017
Simply use:
iwant = 1:100 ;
or
N = 100 ;
iwant = zeros(1,N) ;
for i = 1:N
iwant(i) = i ;
end
  1 commentaire
tomer polsky
tomer polsky le 17 Mar 2017
thank u helped me ,I changed the code but u gave me the idea how to change it ,anyway thank u very much !

Connectez-vous pour commenter.

Plus de réponses (2)

Adam
Adam le 17 Mar 2017
Modifié(e) : Adam le 17 Mar 2017
DC = zeros(1,100);
for n = 1:numel( DC )
DC(n) = input(...)
end
That's a guess at what you are trying to do, it isn't obvious what you are aiming for though.

aisha
aisha le 17 Oct 2023
for j=1:N
for i=j+1:N
L(i,j)=(A(i,j)-L(i,j-1)*U(j-1,j))/U(j,j)
U(j,j)=A(j,j)-sum(L(j,1:j-1)*U(1:j-1,j));
U(j,j+1)=A(j,j+1)-L(j,j-1)*U(j-1,j+1);
end
for k=i+1:N
L(k,j)=(A(k,j)-L(k,k-1)*U(k-1,j))/U(j,j);
end
end
me unable to find error. can anyone help in using loop

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by