Combination of sub-matrices generated within a for loop

조회 수: 2 (최근 30일)
Rengin
Rengin 2019년 8월 13일
댓글: Bruno Luong 2019년 8월 13일
clear;
clc;
close all;
n=[3 1 2];
rad=[0.04 0.02 0.01];
h=[10 12 15];
for kk=1:length(n)
matrix=zeros(n(kk),n(kk));
for ii=1:n(kk)
for jj=1:n(kk)
val=rad(kk)*h(kk);
matrix(ii,jj)=val;
end
end
end
% Dear users, if you put a debug at the very last "end" (row 17), you can
% see that I aim to generate 3 sub-matrices having the size of 3x3, 1x1 and
% 2x2 (see n=[3 1 2]). I want to combine each sub-matrix one each other diagonally.
% I want to get the matrix as a result below:
matrix=[0.4 0.4 0.4 0 0 0;0.4 0.4 0.4 0 0 0;0.4 0.4 0.4 0 0 0;0 0 0 0.24 0 0;0 0 0 0 0.15 0.15;0 0 0 0 0.15 0.15];
%Is there any simple way to do it?
%Thanks in advance!
  댓글 수: 3
madhan ravi
madhan ravi 2019년 8월 13일
Using the previous solution of your question gives the same result, please describe the situation where that condition contradicts your needs.
Bruno Luong
Bruno Luong 2019년 8월 13일
"The calculation of Val is different."
You might try to learn deeper how computer programming actually works, if you get stuck everytime the values change then you miss the whole purpose of programming.

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

채택된 답변

infinity
infinity 2019년 8월 13일
Hello,
There are various solutions for this question, one of the closet one to your current code could be
clear;
clc;
close all;
n=[3 1 2];
rad=[0.04 0.02 0.01];
h=[10 12 15];
matrix = zeros(sum(n));
for kk=1:length(n)
% matrix=zeros(n(kk),n(kk));
for ii=1:n(kk)
for jj=1:n(kk)
val=rad(kk)*h(kk);
matrix(ii+sum(n(1:kk-1)),jj+sum(n(1:kk-1)))=val;
end
end
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by