How to create a matrix with a for- loop
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, i'm trying to create a matrix using a for-loop and conditional.
I want to create
B= 1 1 1
0 0 0
1 1 1
댓글 수: 0
답변 (2개)
Amit Bhowmick
2021년 7월 1일
Check with this
n=3;
B=zeros(n);
for ii=1:n
for jj=1:n
B(ii,jj)=rem(ii,2);
end
end
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!