The equation is given as . D and A are given through matrices. I need to calculate q.
I use operator / to solve linear equation, so that q=A/D. The question is, how to account for summation in this case? q=0,before cycle and then q=q+q;?

댓글 수: 2

madhan ravi
madhan ravi 2020년 7월 6일
Paste what you have tried so far?
n=10;
a=0.1:0.1:1;
A=[a;a;a;a;a;a;a;a;a;a;];
d=0.5:0.5:5;
D=[d;d;d;d;d;d;d;d;d;d;];
q=zeros(n,n);
for m=1:n
for t=1:n
for j=1:n
q(m,j)=A(m,t)/D(j,t);
q(m,j)=q(m,j)+q(m,j);
end
end
end

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

 채택된 답변

Matt J
Matt J 2020년 7월 6일
편집: Matt J 2020년 7월 6일

0 개 추천

q=A/D should already account for the summation. Your equation can be written just by replacing the summation with simple matrix multiplication. In this form, the equation is just q*D=A and you have rightly used q=A/D to solve it.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Mathematics에 대해 자세히 알아보기

질문:

2020년 7월 6일

댓글:

2020년 7월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by