How can I solve system of 6 equations in series?
1 次查看(过去 30 天)
显示 更早的评论
How can I solve system of 6 equations in series?

4 个评论
Sam Chak
2025-4-22
Attempt to sharpen blurry equations.
a = imread('ss.png');
b = imsharpen(a, Radius=2, Amount=1);
imshow(b)
title('Sharpened Image');
Walter Roberson
2025-4-22
Much of the time, equations involving infinite sums are not solvable through any automated system.
回答(1 个)
Torsten
2025-4-22
移动:Torsten
2025-4-22
There is no summation over i in (5.10) and (5.11) although C_n^i and D_n^i are present. Is this a mistake ?
If you want to stop summation at n = 2, you have a linear system of equation in the 6 unknowns. Write your system as M*[A_2, B_2, C1_2, C2_2, D1_2,D2_2] = rhs with a 6x6 matrix "M" and a 6x1 vector "rhs" and solve for [A_2, B_2, C1_2, C2_2, D1_2,D2_2] by using sol = M\rhs .
7 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!