How can I solve system of 6 equations in series?
1 view (last 30 days)
Show older comments
How can I solve system of 6 equations in series?

4 Comments
Sam Chak
on 22 Apr 2025
Attempt to sharpen blurry equations.
a = imread('ss.png');
b = imsharpen(a, Radius=2, Amount=1);
imshow(b)
title('Sharpened Image');
Walter Roberson
on 22 Apr 2025
Much of the time, equations involving infinite sums are not solvable through any automated system.
Answers (1)
Torsten
on 22 Apr 2025
Moved: Torsten
on 22 Apr 2025
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 Comments
See Also
Categories
Find more on Interpolation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!