How can I solve system of 6 equations in series?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How can I solve system of 6 equations in series?

4 Commenti
Sam Chak
il 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
il 22 Apr 2025
Much of the time, equations involving infinite sums are not solvable through any automated system.
Risposte (1)
Torsten
il 22 Apr 2025
Spostato: Torsten
il 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 Commenti
Vedere anche
Categorie
Scopri di più su Interpolation in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!