Tagged Questions
4
votes
2answers
630 views
Obtaining an invertible square matrix from a non-square matrix of full rank in numpy or matlab
Assume you have an NxM matrix A of full rank, where M>N. If we denote the columns by C_i (with dimensions Nx1), then we can write the matrix as
A = [C_1, C_2, ..., C_M]
How can you obtain the ...
3
votes
3answers
556 views
Dimension Reduction
I'm trying to reduce a high-dimension dataset to 2-D. However, I don't have access to the whole dataset upfront. So, I'd like to generate a function that takes an N-dimensional vector and returns a ...
2
votes
3answers
63 views
Obtain null space or single dimensional space which is its best approximation efficiently
I have been doing this using an svd computation
[U, S, V] = svd(A)
wherein I use the last column of A as my null space approximation. Since A gets really large, I realized that this is slowing ...
2
votes
2answers
535 views
Eigen decomposition of a matrix of form W * diag(S) * W' for matrix exponential in MATLAB
W is a tall and skinny real valued matrix, and diag(S) is a diagonal matrix consists of +1 or -1 on the diagonal. I want the eigen decomposition of A = W * diag(S) * W' where single quote denotes ...
0
votes
2answers
95 views
how to check whether the image is compressed or not after applying SVD on that image(regarding size of compressed image on disk)
I=imread('cameraman.tif');
figure(1),imshow(I)
I1=im2double(I);
[U,S,V]=svd(I1);
figure(2),imshow(I1)
for j=1:90
I2=U(:,1:j)*S(1:j,1:j)*V(:,1:j)';
end
figure(3),imshow(I2)
I3=U*S*V';
...
0
votes
1answer
222 views
SVD for image compression-image takes more disk size, hmm..?
d=50;
im = imread('H:\matlab\bildanalys\terminator.gif');
M2 = double(im);
[U S V] = svd(M2);
U2 = U(:,1:d);
S2 = S(1:d,1:d);
V2 = V(:,1:d);
compressed=U2*S2*V2';
...
-6
votes
0answers
35 views
can SVD be implemented for image segmentation , if so can i get an algorithm or steps to proceed with it [closed]
i'm tryin to deploy SVD for image segmentation, so i need a crude way or an algorithm to proceed with using matlab for coding.