Help with MATLAB code on low rank assumption using nuclear norm using CVX and Matlab!
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have created code on low rank assumption using nuclear norm using CVX. For some reason my code isnt working and I'm getting the following error message. Any help will be appreciated Thanks!
Error message -
Error using * (line 40)
Inner matrix dimensions do not agree.
Error in Untitled (line 17)
A*Xe(:)==y
Below is my code -
r = 2; % the rank;
n = 32; % the dimension
a = randn(n,r);
b = randn(n,r);
X = a*b'; % low rank Matrix;
m=fix(n^2-1);
A = randn(n, n);
y = trace(A*X);
% low rank approximation using nuclear norm
cvx_begin
variable Xe(n,m)
minimize norm_nuc(Xe)
subject to
A*Xe(:)==y
cvx_end
error = norm(X-Xe)
for m = 1 : 10 : n^2
for mc = 1 : MONTE_CARLO
% Generate measurements
y = zeros(m, 1);
for i_m = 1 : m
A_i = randn(n, n);
y(i_m) = trace(A_i*X);
end
% Solve problem
for i_m = 1 : m
y(i_m) == trace(A_i*Xe);
end
% Store results
end
end
6 comentarios
Bob Thompson
el 19 de En. de 2021
Xe is a single value? It looks like you're defining Xe to have n x m size. I'm not super familiar with cvx, so I could be wrong...
Respuestas (1)
Bob Thompson
el 19 de En. de 2021
I believe the issue is with calling Xe(:) instead of Xe. Others who know more might be able to correct me, but my working theory is that A*Xe works because it's doing matrix math, and the inner dimensions agree, but A*Xe(:) does not work because it's now trying to compare A to each element of Xe, but the number of elements in A does not match the number of elements of Xe.
Are you trying to multiple the two matrices together, or to multiply the elements of the two matrices together?
3 comentarios
Bob Thompson
el 25 de En. de 2021
One issue you're going to have is that you're only going to be comparing y(i_m) == trace(A_i*Xe) using the last A_i array. Yes, I know that doesn't address the issue.
For the issue of undefined A_i, I would double check that you don't have a typo. The code you posted previously does not cause an issue of undefined function/variable. Have you changed the bit of code within the loop that defines the generation of A_i?
Ver también
Categorías
Más información sobre Particle & Nuclear Physics en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!