Sparse matrix x = A/B
Ältere Kommentare anzeigen
I have been trying executing my data for sparse matrix, and i have been following the example that can be execute but for my data it cant where my data is A is 25x10 and B is 10x1 to solve for x but when i try to solve it shows that A is 10x25 and B is 1x10 and cant be executed.

Antworten (1)
Don't post pictures, post your code in plain ascii so that we are able to copy and execute it.
Your A in the picture you posted has 10 rows and 25 columns, thus is 10x25, not 25x10.
Similarily, the B in the picture you posted has 1 row and 25 columns, thus is 1x25.
You want to solve for X in
A*X = B
where A is 25x10 and B is 10x1 ?
That's not possible: B must be 25x1 to get X as 10x1.
4 Kommentare
Zainulariffin Hakim Mohamad
am 15 Mai 2023
Zainulariffin Hakim Mohamad
am 15 Mai 2023
Your question was about the dimensions of A and B in
A*X = B
so that the equation can be solved for X.
If A is (nxm) and B is (nx1), you'll usually get a "solution" X of size (mx1).
For the other questions, you should open a new task and describe your problem more comprehensible. I have no experience in image processing.
Zainulariffin Hakim Mohamad
am 15 Mai 2023
Kategorien
Mehr zu Sparse Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!