Ziv wrote:
> how does [T{:}]' interperted?
Equivalent code:
temp = []
for K = 1 : numel(T)
temp = [temp T{K}];
end
temp = temp ';
It is, in other words, the same as writing
[T{1} T{2} T{3} ... T{end}]'
Warning: ' is the complex conjugate transpose operator, not the plain
transpose operator, which is .' in Matlab.
> how does [T{:}]' interperted?
Equivalent code:
temp = []
for K = 1 : numel(T)
temp = [temp T{K}];
end
temp = temp ';
It is, in other words, the same as writing
[T{1} T{2} T{3} ... T{end}]'
Warning: ' is the complex conjugate transpose operator, not the plain
transpose operator, which is .' in Matlab.