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!