How can I put the outputs of for loop into a matrix?

조회 수: 9 (최근 30일)
Eray Bozoglu
Eray Bozoglu 2020년 11월 30일
댓글: Eray Bozoglu 2020년 12월 1일
Hey i am new to matlab and need help with storing answer of my for loop into a matrix can anyone help ?
my aim is having (n x n) matrix. thanks a lot
n=input('please enter n>');
for j=1:n
for i=1:n
a=(5*(i/n))+(8*(j/n));
end
end
  댓글 수: 3
Eray Bozoglu
Eray Bozoglu 2020년 11월 30일
edited the post im trying to have (n x n) matrix. with the current code if i plug 2 i can have 4 out put. such as
a b c d
i want to have them stored as [a b ; c d]
so for bigger n i can have better overview and use it in another script with defining it as a matrix.
Rik
Rik 2020년 11월 30일
You are still overwriting a in every iteration.
Did you do a basic Matlab tutorial?

댓글을 달려면 로그인하십시오.

채택된 답변

John D'Errico
John D'Errico 2020년 11월 30일
편집: John D'Errico 2020년 11월 30일
First, don't use loops at all. For example, with n==3...
n = 3;
ind = 1:n;
a = ind.'*5/n + ind*8/n
a = 3×3
4.3333 7.0000 9.6667 6.0000 8.6667 11.3333 7.6667 10.3333 13.0000
Since this is probably homework, and a loop is required, while I tend not to do homework assignments, you came pretty close. You made only two mistakes. First, you did not preallocate a, which is important for speed, but not crucial. It would still run without that line. Second, you are stuffing the elements as created into a(i,j). So you need to write it that way.
n = 3;
a = zeros(n); % preallocate arrays
for i = 1:n
for j = 1:n
a(i,j) = (5*(i/n))+(8*(j/n));
end
end
a
a = 3×3
4.3333 7.0000 9.6667 6.0000 8.6667 11.3333 7.6667 10.3333 13.0000

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by