could anyone please help me solve the matrices with respect to the equation as follows:
1 次查看(过去 30 天)
显示 更早的评论
I am having the following matrices
U=[15;
14;
13]
V=[2;
3;
4]
i need to solve the matrices with respect to the equation as follows:
where i=3,
Could anyone please help me on this.
采纳的回答
Alex Mcaulley
2019-7-30
For i == 3:
X3 = V(3)*U(2)-U(2)*sum(V(1:2))
11 个评论
Alex Mcaulley
2019-7-30
It doesn't follow the equation you shared. Anyway, a possible trick:
sol = V;
for a = 2:numel(V)
sol(a) = U(1)*(V(a)-sum(V(1:a-1)));
end
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!