How can I unfold a tensor?
Ältere Kommentare anzeigen
In the algorithm of High order SVD, A is a tensor, how to unfold it? for examplr,A(1),A(2),A(3). Thank you so much .
Antworten (2)
function [X] = Unfold( T, dim, i )
X = reshape(shiftdim(T,i-1), dim(i), []);
the cyclist
am 27 Aug. 2013
Bearbeitet: the cyclist
am 27 Aug. 2013
I am not sure I understand, but I think you want to do
A(:)
or use the reshape() command.
Kategorien
Mehr zu Get Started with MATLAB 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!