필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

could anyone help me how to solve the issue.

조회 수: 1 (최근 30일)
jaah navi
jaah navi 2019년 4월 23일
마감: MATLAB Answer Bot 2021년 8월 20일
code:
A=[ 12 11 10 9;
8 7 6 5;
4 3 2 1]
B=[1 2 3 4;
5 6 7 8;
9 10 11 12]
C= partitions(3)
total = length(C)
idx = randperm(total,1)
D = C(idx)
partdisp(D)
for len_partition=1:length(D)
for len_cluster=1:length(D{len_partition})
display_user_inside_cluster=(D{len_partition}{len_cluster})
for b =1:size(B,2)
for a =1:size(A,1)
rate(a,b) =((A(a,b)).*(B(a,b)))
end
end
overallrate(len_cluster)= sum(sum(rate))
end
end
totalrate=sum(overallrate)
The above code executes and gives the result.In this code based on command partdisp(D),the overallrate(len_cluster)= sum(sum(rate)) gets calculated.
Could anyone help me how to make the command partdisp(D) based on overallrate(len_cluster)= sum(sum(rate)),
i.e,I want to make the code in the reverse order to execute.
Could anyone please help me on this.
  댓글 수: 2
Rik
Rik 2019년 4월 23일
What is the reason you put partdisp before the loop then?
Jan
Jan 2019년 4월 23일
You can replace
for b =1:size(B,2)
for a =1:size(A,1)
rate(a,b) =((A(a,b)).*(B(a,b)))
end
end
by
rate = A .* B;
But why is this called inside the loops at all? It has the same value.

답변 (0개)

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by